We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 694828d commit 734ce67Copy full SHA for 734ce67
test/parallel/test-crypto-cipher-decipher.js
@@ -141,7 +141,7 @@ testCipher2(Buffer.from('0123456789abcdef'));
141
// setAutoPadding/setAuthTag/setAAD should return `this`
142
{
143
const key = '0123456789';
144
- const tagbuf = Buffer.from('tagbuf');
+ const tagbuf = Buffer.from('auth_tag');
145
const aadbuf = Buffer.from('aadbuf');
146
const decipher = crypto.createDecipher('aes-256-gcm', key);
147
assert.strictEqual(decipher.setAutoPadding(), decipher);
0 commit comments