Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

std/crypto/mod.ts>StdSubtleCrypto

Deno standard library
Go to Latest
interface StdSubtleCrypto
implements SubtleCrypto
import { type StdSubtleCrypto } from "https://deno.land/std@0.218.2/crypto/mod.ts";

Extensions to the web standard SubtleCrypto interface.

Methods

digest(algorithm: DigestAlgorithm, data: BufferSource | AsyncIterable<BufferSource> | Iterable<BufferSource>): Promise<ArrayBuffer>

Returns a new Promise object that will digest data using the specified AlgorithmIdentifier.

digestSync(algorithm: DigestAlgorithm, data: BufferSource | Iterable<BufferSource>): ArrayBuffer

Returns a ArrayBuffer with the result of digesting data using the specified AlgorithmIdentifier.