Extensions to the Web Crypto supporting additional encryption APIs, but also delegating to the built-in APIs when possible.
import { crypto } from "@std/crypto/crypto";const message = "Hello, Deno!";const encoder = new TextEncoder();const data = encoder.encode(message);await crypto.subtle.digest("BLAKE3", data); Copy
import { crypto } from "@std/crypto/crypto";const message = "Hello, Deno!";const encoder = new TextEncoder();const data = encoder.encode(message);await crypto.subtle.digest("BLAKE3", data);
Extensions to the Web Crypto supporting additional encryption APIs, but also delegating to the built-in APIs when possible.