-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathnormalize-algorithm-name.https.any.js
More file actions
52 lines (46 loc) · 1.72 KB
/
normalize-algorithm-name.https.any.js
File metadata and controls
52 lines (46 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// META: title=WebCryptoAPI: Algorithm normalization matches names ASCII case-insensitively
// U+212A is the Kelvin Sign
function makeSalt() {
return crypto.getRandomValues(new Uint8Array(32));
}
async function makeKey(algorithm) {
const keyData = new Uint8Array([]);
return crypto.subtle.importKey("raw", keyData, algorithm, false, ["deriveBits"]);
}
promise_test(async (t) => {
const algorithm = {
name: "H\u212ADF",
hash: "SHA-256",
salt: makeSalt(),
info: new TextEncoder().encode(''),
};
const key = await makeKey("HKDF");
const p = crypto.subtle.deriveBits(algorithm, key, 256);
return promise_rejects_dom(t, "NotSupportedError", p, algorithm.name);
}, `"H<U+212A>DF" does not match "HKDF"`);
promise_test(async (t) => {
const algorithm = {
name: "PB\u212ADF2",
hash: "SHA-256",
iterations: 1,
salt: makeSalt(),
};
const key = await makeKey("PBKDF2");
const p = crypto.subtle.deriveBits(algorithm, key, 256);
return promise_rejects_dom(t, "NotSupportedError", p, algorithm.name);
}, `"PB<U+212A>DF2" does not match "PBKDF2"`);
promise_test(async (t) => {
const algorithm = {name: "AES-\u212AW", length: 256};
const p = crypto.subtle.generateKey(algorithm, false, ["wrapKey"]);
return promise_rejects_dom(t, "NotSupportedError", p, algorithm.name);
}, `"AES-<U+212A>W" does not match "AES-KW"`);
promise_test(async (t) => {
const algorithm = {
name: "RSASSA-P\u212ACS1-V1_5",
modulusLength: 2048,
publicExponent: new Uint8Array([3]),
hash: "SHA-256",
};
const p = crypto.subtle.generateKey(algorithm, false, ["sign"]);
return promise_rejects_dom(t, "NotSupportedError", p, algorithm.name);
}, `"RSASSA-P<U+212A>CS1-V1_5" does not match "RSASSA-PKCS1-V1_5"`);