Skip to main content
On this page

Overview Jump to heading#

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);

Add to your project Jump to heading#

›_
deno add jsr:@std/crypto

See all symbols in @std/crypto on

Did you find what you needed?

Edit this page
Privacy policy
Morty Proxy This is a proxified and sanitized view of the page, visit original site.