deno.land / std@0.157.0 / crypto / _wasm_crypto / test.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../../testing/asserts.ts";import { instantiateWasm } from "./mod.ts";
const webCrypto = globalThis.crypto;
Deno.test("test", async () => { const input = new TextEncoder().encode("SHA-384");
const wasmCrypto = instantiateWasm(); const wasmDigest = wasmCrypto.digest("SHA-384", input, undefined);
const webDigest = new Uint8Array( await webCrypto.subtle!.digest("SHA-384", input), );
assertEquals(wasmDigest, webDigest);});
std

Version Info

Tagged at
a year ago