7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { HexString } from '../Types/HexString'
|
|
import { Utf8String } from '../Types/Utf8String'
|
|
|
|
export interface CryptoSha256Interface {
|
|
sha256(text: Utf8String): HexString
|
|
}
|