interface StdSubtleCrypto
implements SubtleCrypto
import { type StdSubtleCrypto } from "https://deno.land/std@0.199.0/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
.