Lines Matching refs:algorithm
33 algorithm, property
46 algorithm.name,
52 const result = await subtle.decrypt(algorithm, privateKey, ciphertext);
61 const result2 = await subtle.decrypt(algorithm, privateKey, ciphercopy);
72 algorithm, property
85 algorithm.name,
95 const result = await subtle.encrypt(algorithm, publicKey, plaintext);
101 privateKey.algorithm.modulusLength);
103 const out = await subtle.decrypt(algorithm, privateKey, result);
110 async function testEncryptionLongPlaintext({ algorithm, property
120 algorithm.name,
129 subtle.encrypt(algorithm, publicKey, newplaintext), {
134 async function testEncryptionWrongKey({ algorithm, property
144 algorithm.name,
149 subtle.encrypt(algorithm, privateKey, plaintext), {
154 async function testEncryptionBadUsage({ algorithm, property
164 algorithm.name,
169 subtle.encrypt(algorithm, publicKey, plaintext), {
175 algorithm, property
187 algorithm.name,
193 subtle.decrypt(algorithm, publicKey, ciphertext), {
199 algorithm, property
211 algorithm.name,
217 subtle.decrypt(algorithm, publicKey, ciphertext), {