Searched refs:assert_goodCryptoKey (Results 1 - 7 of 7) sorted by relevance
/third_party/node/test/fixtures/wpt/WebCryptoAPI/generateKey/ |
H A D | successes.js | 66 assert_goodCryptoKey(result.privateKey, algorithm, extractable, usages, "private"); 67 assert_goodCryptoKey(result.publicKey, algorithm, true, usages, "public"); 69 assert_goodCryptoKey(result, algorithm, extractable, usages, "secret");
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/import_export/ |
H A D | okp_importKey.https.any.js | 108 assert_goodCryptoKey(key, algorithm, extractable, usages, (format === 'pkcs8' || (format === 'jwk' && keyData[format].d)) ? 'private' : 'public');
|
H A D | symmetric_importKey.https.any.js | 73 assert_goodCryptoKey(key, hasLength(key.algorithm) ? { length: keySize, ...algorithm } : algorithm, extractable, usages, 'secret');
|
H A D | ec_importKey.https.any.js | 114 assert_goodCryptoKey(key, algorithm, extractable, usages, (format === 'pkcs8' || (format === 'jwk' && keyData.d)) ? 'private' : 'public');
|
H A D | rsa_importKey.https.any.js | 117 assert_goodCryptoKey(key, algorithm, extractable, usages, (format === 'pkcs8' || (format === 'jwk' && keyData[format].d)) ? 'private' : 'public');
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/util/ |
H A D | helpers.js | 95 function assert_goodCryptoKey(key, algorithm, extractable, usages, kind) { function
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/ |
H A D | wrapKey_unwrapKey.https.any.js | 145 assert_goodCryptoKey(unwrappedResult, toWrap.algorithm, true, toWrap.usages, toWrap.key.type); 165 assert_goodCryptoKey(unwrappedResult, toWrap.algorithm, false, toWrap.usages, toWrap.key.type);
|
Completed in 5 milliseconds