Files
standardnotes-app-web/packages/sncrypto-common/src/SHA/CryptoSha256Interface.ts
2022-07-06 12:21:21 +02:00

7 lines
178 B
TypeScript

import { HexString } from '../Types/HexString'
import { Utf8String } from '../Types/Utf8String'
export interface CryptoSha256Interface {
sha256(text: Utf8String): HexString
}