interface StdSubtleCrypto
extends SubtleCrypto
Extensions to the web standard SubtleCrypto interface.
Methods
digest(algorithm: DigestAlgorithm,data: ): Promise<ArrayBuffer>Returns a new Promise object that will digest data using the specified
AlgorithmIdentifier.
digestSync(algorithm: DigestAlgorithm,data: BufferSource | Iterable<BufferSource>): ArrayBufferReturns a ArrayBuffer with the result of digesting data using the
specified AlgorithmIdentifier.