deno.land / std@0.224.0 / crypto / mod.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Extensions to the * {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API | Web Crypto} * supporting additional encryption APIs, but also delegating to the built-in * APIs when possible. * * ```ts * import { crypto } from "https://deno.land/std@$STD_VERSION/crypto/crypto.ts"; * * const message = "Hello, Deno!"; * const encoder = new TextEncoder(); * const data = encoder.encode(message); * * await crypto.subtle.digest("BLAKE3", data); * ``` * * @module */
export * from "./crypto.ts";export * from "./unstable_keystack.ts";export * from "./timing_safe_equal.ts";
std

Version Info

Tagged at
3 weeks ago