deno.land / std@0.224.0 / crypto / testdata / digest_large_inputs.ts

View Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { crypto as stdCrypto } from "../crypto.ts";import { instantiateWithInstance } from "../_wasm/lib/deno_std_wasm_crypto.generated.mjs";import { encodeHex } from "../../encoding/hex.ts";
const memory = instantiateWithInstance().instance.exports .memory as WebAssembly.Memory;
const heapBytesInitial = memory.buffer.byteLength;
const smallData = new Uint8Array(64);const smallDigest = encodeHex( stdCrypto.subtle.digestSync("BLAKE3", smallData.buffer),);const heapBytesAfterSmall = memory.buffer.byteLength;
const largeData = new Uint8Array(64_000_000);const largeDigest = encodeHex( stdCrypto.subtle.digestSync("BLAKE3", largeData.buffer),);const heapBytesAfterLarge = memory.buffer.byteLength;
console.log(JSON.stringify({ heapBytesInitial, smallDigest, heapBytesAfterSmall, largeDigest, heapBytesAfterLarge,}));
std

Version Info

Tagged at
4 months ago