/third_party/node/lib/internal/crypto/ |
D | keygen.js | 72 function wrapKey(key, ctor) { function 93 pubkey = wrapKey(pubkey, PublicKeyObject); 94 privkey = wrapKey(privkey, PrivateKeyObject); 123 publicKey: wrapKey(publicKey, PublicKeyObject), 124 privateKey: wrapKey(privateKey, PrivateKeyObject), 382 return wrapKey(key, SecretKeyObject); 397 FunctionPrototypeCall(callback, job, null, wrapKey(key, SecretKeyObject));
|
D | webcrypto.js | 668 async function wrapKey(format, key, wrappingKey, algorithm) { function 1110 wrapKey: { property 1115 value: wrapKey,
|
D | util.js | 510 wrapKey: 5, property
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/ |
D | wrapKey_unwrapKey.https.any.js | 141 … return subtle.wrapKey(fmt, toWrap.key, wrapper.wrappingKey, wrapper.parameters.wrapParameters) 161 … return subtle.wrapKey(fmt, toWrap.key, wrapper.wrappingKey, wrapper.parameters.wrapParameters) 460 return subtle.wrapKey("raw", aKeyToWrap, expected, wrapParams); 463 return subtle.wrapKey("raw", aKeyToWrap, got, wrapParams);
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | WebCryptoAPI.idl | 30 enum KeyUsage { "encrypt", "decrypt", "sign", "verify", "deriveKey", "deriveBits", "wrapKey", "unwr… 79 Promise<any> wrapKey(KeyFormat format,
|
/third_party/node/test/parallel/ |
D | test-webcrypto-constructors.js | 128 assert.rejects(() => notSubtle.wrapKey(), {
|
D | test-webcrypto-wrap-unwrap.js | 258 await subtle.wrapKey(
|
/third_party/node/doc/api/ |
D | webcrypto.md | 228 }, true, ['wrapKey', 'unwrapKey']), 231 const wrappedKey = await subtle.wrapKey(format, key, wrappingKey, 'AES-KW'); 339 … | `generateKey` | `exportKey` | `importKey` | `encrypt` | `decrypt` | `wrapKey` | `unwrapKey` | … 442 `subtleCrypto.exportKey()` or `subtleCrypto.wrapKey()`. 476 * `'wrapKey'` - The key may be used to wrap another key. 482 …`'decrypt'` | `'sign'` | `'verify'` | `'deriveKey'` | `'deriveBits'` | `'wrapKey'` | `'unwrapKey'`… 945 ### `subtle.wrapKey(format, key, wrappingKey, wrapAlgo)` 962 keying material. The `subtle.wrapKey()` method exports the keying material into
|
/third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-jwk/ |
D | README.md | 32 …rations (mutually exclusive with --use): sign, verify, encrypt, decrypt, wrapKey, unwrapKey, deriv…
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 3242 …wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentif… method
|
D | lib.dom.d.ts | 14097 …wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentif… method
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 3222 …wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentif… method
|
D | dom.generated.d.ts | 14077 …wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentif… method
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 14507 …wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | Algorithm)… method
|