Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/fixtures/wpt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Last update:
- wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi
- wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi
- web-locks: https://github.com/web-platform-tests/wpt/tree/10a122a6bc/web-locks
- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/caebe89c3b/WebCryptoAPI
- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/2cb332d710/WebCryptoAPI
- webidl: https://github.com/web-platform-tests/wpt/tree/63ca529a02/webidl
- webidl/ecmascript-binding/es-exceptions: https://github.com/web-platform-tests/wpt/tree/2f96fa1996/webidl/ecmascript-binding/es-exceptions
- webmessaging/broadcastchannel: https://github.com/web-platform-tests/wpt/tree/6495c91853/webmessaging/broadcastchannel
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
// META: title=WebCryptoAPI: raw-secret and raw-public importKey() format aliases
// META: timeout=long
// META: script=../util/helpers.js

// For all existing symmetric algorithms in WebCrypto, "raw-secret" acts as an
// alias of "raw". For all existing asymmetric algorithms in WebCrypto,
// "raw-public" acts as an alias of "raw".

"use strict";

const rawKeyData16 = crypto.getRandomValues(new Uint8Array(16));
const rawKeyData32 = crypto.getRandomValues(new Uint8Array(32));
const wrapAlgorithm = { name: "AES-GCM", iv: new Uint8Array(12) };

const symmetricAlgorithms = [
{ algorithm: { name: "AES-CTR", length: 128 }, keyData: rawKeyData16, usages: ["encrypt", "decrypt"] },
{ algorithm: { name: "AES-CBC", length: 128 }, keyData: rawKeyData16, usages: ["encrypt", "decrypt"] },
{ algorithm: { name: "AES-GCM", length: 128 }, keyData: rawKeyData16, usages: ["encrypt", "decrypt"] },
{ algorithm: { name: "AES-KW", length: 128 }, keyData: rawKeyData16, usages: ["wrapKey", "unwrapKey"] },
{ algorithm: { name: "HMAC", hash: "SHA-256", length: 256 }, keyData: rawKeyData32, usages: ["sign", "verify"] },
{ algorithm: { name: "HKDF" }, keyData: rawKeyData32, usages: ["deriveBits", "deriveKey"], extractable: false },
{ algorithm: { name: "PBKDF2" }, keyData: rawKeyData32, usages: ["deriveBits", "deriveKey"], extractable: false },
];

for (const { algorithm, keyData, usages, extractable = true } of symmetricAlgorithms) {
promise_test(async () => {
const key = await crypto.subtle.importKey("raw-secret", keyData, algorithm, extractable, usages);
assert_goodCryptoKey(key, algorithm, extractable, usages, "secret");
if (extractable) {
await crypto.subtle.exportKey("raw-secret", key);
}
}, `importKey/exportKey with raw-secret: ${algorithm.name}`);

if (extractable) {
promise_test(async () => {
const wrappingKey = await crypto.subtle.generateKey({ name: "AES-GCM", length: 256 }, false, ["wrapKey", "unwrapKey"]);
const key = await crypto.subtle.importKey("raw-secret", keyData, algorithm, true, usages);
const wrapped = await crypto.subtle.wrapKey("raw-secret", key, wrappingKey, wrapAlgorithm);
const unwrapped = await crypto.subtle.unwrapKey("raw-secret", wrapped, wrappingKey, wrapAlgorithm, algorithm, true, usages);
assert_goodCryptoKey(unwrapped, algorithm, true, usages, "secret");
}, `wrapKey/unwrapKey with raw-secret: ${algorithm.name}`);
}
}

const asymmetricAlgorithms = [
{ algorithm: { name: "ECDSA", namedCurve: "P-256" }, usages: ["verify"] },
{ algorithm: { name: "ECDH", namedCurve: "P-256" }, usages: [] },
{ algorithm: { name: "Ed25519" }, usages: ["verify"] },
{ algorithm: { name: "X25519" }, usages: [] },
];

for (const { algorithm, usages } of asymmetricAlgorithms) {
const generateKeyUsages = usages.length ? usages.concat("sign") : ["deriveBits"];

promise_test(async () => {
const keyPair = await crypto.subtle.generateKey(algorithm, true, generateKeyUsages);
const keyData = await crypto.subtle.exportKey("raw-public", keyPair.publicKey);

const key = await crypto.subtle.importKey("raw-public", keyData, algorithm, true, usages);
assert_goodCryptoKey(key, algorithm, true, usages, "public");
await crypto.subtle.exportKey("raw-public", key);
}, `importKey/exportKey with raw-public: ${algorithm.name}`);

promise_test(async () => {
const keyPair = await crypto.subtle.generateKey(algorithm, true, generateKeyUsages);

const wrappingKey = await crypto.subtle.generateKey({ name: "AES-GCM", length: 256 }, false, ["wrapKey", "unwrapKey"]);
const wrapped = await crypto.subtle.wrapKey("raw-public", keyPair.publicKey, wrappingKey, wrapAlgorithm);
const unwrapped = await crypto.subtle.unwrapKey("raw-public", wrapped, wrappingKey, wrapAlgorithm, algorithm, true, usages);
assert_goodCryptoKey(unwrapped, algorithm, true, usages, "public");
}, `wrapKey/unwrapKey with raw-public: ${algorithm.name}`);
}
2 changes: 1 addition & 1 deletion test/fixtures/wpt/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"path": "web-locks"
},
"WebCryptoAPI": {
"commit": "caebe89c3b243513c4b7e5e8dd2a370e5800bb73",
"commit": "2cb332d71030ba0200610d72b94bb1badf447418",
"path": "WebCryptoAPI"
},
"webidl": {
Expand Down
Loading