Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 | 44x 44x 44x 740x | import { sha256 } from '@noble/hashes/sha256';
import { ensureUint8Array } from 'micro-stacks/common';
export function hashSha256(data: Uint8Array): Uint8Array {
return sha256.create().update(ensureUint8Array(data)).digest();
}
|