feat: add sncrypto client side packages

This commit is contained in:
Karol Sójko
2022-07-06 12:21:21 +02:00
parent 9d1f7043e5
commit 6ec66795d2
71 changed files with 9786 additions and 34 deletions

View File

@@ -0,0 +1,6 @@
import { HexString } from '../Types/HexString'
import { Utf8String } from '../Types/Utf8String'
export interface CryptoSha256Interface {
sha256(text: Utf8String): HexString
}

View File

@@ -0,0 +1 @@
export * from './CryptoSha256Interface'