MCPcopy Create free account
hub / github.com/getsentry/sentry-javascript / digest

Method digest

packages/deno/lib.deno.d.ts:12694–12694  ·  view source on GitHub ↗

* Computes a cryptographic hash (digest) of the given data. * * This method is commonly used for verifying data integrity. * * @example * ```ts * // Compute the digest of given data using a cryptographic algorithm * await crypto.subtle.digest("SHA-256", data); * ``` * *

(
    algorithm: AlgorithmIdentifier,
    data: BufferSource,
  )

Source from the content-addressed store, hash-verified

12692 * @see https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/digest
12693 */
12694 digest(
12695 algorithm: AlgorithmIdentifier,
12696 data: BufferSource,
12697 ): Promise<ArrayBuffer>;

Callers 6

stringToUUIDFunction · 0.80
hashSha256base64Function · 0.80
outputDependencyCacheKeyFunction · 0.80
sqsFunction · 0.80
sqsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected