Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 441 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 441 Bytes

crypto

Usage

import { crypto } from "https://deno.land/std@$STD_VERSION/crypto/mod.ts";

// This will delegate to the runtime's WebCrypto implementation.
console.log(
  await crypto.subtle.digest(
    "SHA-384",
    new TextEncoder().encode("hello world"),
  ),
);

// This will use a bundled WASM/Rust implementation.
console.log(
  await crypto.subtle.digest("BLAKE3", new TextEncoder().encode("hello world")),
);