MCPcopy Index your code
hub / github.com/nodejs/node / unwrapKey

Function unwrapKey

lib/internal/crypto/webcrypto.js:1082–1091  ·  view source on GitHub ↗
(
  format,
  wrappedKey,
  unwrappingKey,
  unwrapAlgorithm,
  unwrappedKeyAlgorithm,
  extractable,
  keyUsages)

Source from the content-addressed store, hash-verified

1080// subtle.unwrapKey() is essentially a subtle.decrypt() followed
1081// by a subtle.importKey().
1082function unwrapKey(
1083 format,
1084 wrappedKey,
1085 unwrappingKey,
1086 unwrapAlgorithm,
1087 unwrappedKeyAlgorithm,
1088 extractable,
1089 keyUsages) {
1090 return callSubtleCryptoMethod(unwrapKeyImpl, this, arguments);
1091}
1092
1093function unwrapKeyImpl(
1094 format,

Callers

nothing calls this directly

Calls 1

callSubtleCryptoMethodFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…