This repository has been archived on 2023-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
libsiaweb/dist/blake2b.d.ts

4 lines
134 B
TypeScript

declare const BLAKE2B_HASH_SIZE = 32;
declare function blake2b(input: Uint8Array): Uint8Array;
export { BLAKE2B_HASH_SIZE, blake2b };