Lines Matching refs:algorithm
15 algorithm, property
32 { name: algorithm.name, hash },
38 { name: algorithm.name, hash },
44 { name: algorithm.name, hash },
61 assert(await subtle.verify(algorithm, publicKey, signature, plaintext));
66 const p = subtle.verify(algorithm, publicKey, sigcopy, copy);
73 subtle.verify(algorithm, privateKey, signature, plaintext), {
78 subtle.verify(algorithm, noVerifyPublicKey, signature, plaintext), {
84 subtle.verify(algorithm, hmacKey, signature, plaintext), {
89 subtle.verify(algorithm, ecdsaKeys.publicKey, signature, plaintext), {
97 assert(!(await subtle.verify(algorithm, publicKey, copy, plaintext)));
99 algorithm,
109 assert(!(await subtle.verify(algorithm, publicKey, signature, copy)));
118 { name: algorithm.name, hash: otherhash },
121 assert(!(await subtle.verify(algorithm, keyWithOtherHash, signature, plaintext)));
126 algorithm, property
142 { name: algorithm.name, hash },
148 { name: algorithm.name, hash },
166 const sig = await subtle.sign(algorithm, privateKey, plaintext);
168 assert(await subtle.verify(algorithm, publicKey, sig, plaintext));
173 const p = subtle.sign(algorithm, privateKey, copy);
176 assert(await subtle.verify(algorithm, publicKey, sig, plaintext));
181 subtle.sign(algorithm, publicKey, plaintext), {
187 subtle.sign(algorithm, hmacKey, plaintext), {
192 subtle.sign(algorithm, ecdsaKeys.privateKey, plaintext), {