Lines Matching refs:plaintext
11 const plaintext =
16 let ciph = cipher.update(plaintext, 'utf8', 'hex');
23 assert.strictEqual(txt, plaintext,
31 cStream.end(plaintext);
38 assert.strictEqual(txt, plaintext,
45 const plaintext =
50 let ciph = cipher.update(plaintext, 'utf8', 'buffer');
57 assert.strictEqual(txt, plaintext,
65 const plaintext = Buffer.from('00112233445566778899AABBCCDDEEFF', 'hex');
68 let ciph = cipher.update(plaintext, 'utf8', 'buffer');
77 assert(deciph.equals(plaintext),