forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src,crypto: fix 0-length output crash in webcrypto
Refs: nodejs#38883
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
const assert = require('assert'); | ||
const crypto = require('crypto').webcrypto; | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
crypto.subtle.importKey( | ||
'raw', | ||
new Uint8Array(32), | ||
{ name: 'AES-GCM' }, | ||
false, | ||
[ 'encrypt','decrypt' ]).then(k => { | ||
assert(k instanceof crypto.CryptoKey); | ||
return crypto.subtle.encrypt({ | ||
name: 'AES-GCM', | ||
iv: new Uint8Array(12), | ||
}, k, new Uint8Array(0)).then(e => { | ||
assert(e instanceof ArrayBuffer); | ||
assert.deepStrictEqual( | ||
Buffer.from(e), | ||
Buffer.from([ | ||
0x53, 0x0f, 0x8a, 0xfb, 0xc7, 0x45, 0x36, 0xb9, | ||
0xa9, 0x63, 0xb4, 0xf1, 0xc4, 0xcb, 0x73, 0x8b ])); | ||
return crypto.subtle.decrypt({ | ||
name: 'AES-GCM', | ||
iv: new Uint8Array(12) }, | ||
k, | ||
e); | ||
}); | ||
}) | ||
.then(v => { | ||
assert(v instanceof ArrayBuffer); | ||
assert.strictEqual(v.byteLength, 0); | ||
}); |