--- title: "@std/crypto" description: "Extensions to the Web Crypto API" jsr: jsr:@std/crypto pkg: crypto version: 1.0.5 generated: true stability: stable --- ## Overview

Extensions to the Web Crypto supporting additional encryption APIs, but also delegating to the built-in APIs when possible.

```js 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 ```sh deno add jsr:@std/crypto ``` See all symbols in @std/crypto on