Skip to content

Commit 588b388

Browse files
tniessenZaneHannanAUTrott
authored andcommitted
crypto: use byteLength in timingSafeEqual
PR-URL: #29657 Co-authored-by: ZaneHannanAU <ZaneHannanAU@users.noreply.github.com> Co-authored-by: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
1 parent 6579b1a commit 588b388

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

lib/internal/crypto/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function timingSafeEqual(buf1, buf2) {
7878
throw new ERR_INVALID_ARG_TYPE('buf2',
7979
['Buffer', 'TypedArray', 'DataView'], buf2);
8080
}
81-
if (buf1.length !== buf2.length) {
81+
if (buf1.byteLength !== buf2.byteLength) {
8282
throw new ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH();
8383
}
8484
return _timingSafeEqual(buf1, buf2);

lib/internal/errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ E('ERR_CRYPTO_SCRYPT_NOT_SUPPORTED', 'Scrypt algorithm not supported', Error);
750750
// Switch to TypeError. The current implementation does not seem right.
751751
E('ERR_CRYPTO_SIGN_KEY_REQUIRED', 'No key provided to sign', Error);
752752
E('ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH',
753-
'Input buffers must have the same length', RangeError);
753+
'Input buffers must have the same byte length', RangeError);
754754
E('ERR_DNS_SET_SERVERS_FAILED', 'c-ares failed to set servers: "%s" [%s]',
755755
Error);
756756
E('ERR_DOMAIN_CALLBACK_NOT_AVAILABLE',

test/sequential/test-crypto-timing-safe-equal.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,26 @@ assert.strictEqual(
1818
false
1919
);
2020

21+
{
22+
// Test TypedArrays with different lengths but equal byteLengths.
23+
const buf = crypto.randomBytes(16).buffer;
24+
const a1 = new Uint8Array(buf);
25+
const a2 = new Uint16Array(buf);
26+
const a3 = new Uint32Array(buf);
27+
28+
for (const left of [a1, a2, a3]) {
29+
for (const right of [a1, a2, a3]) {
30+
assert.strictEqual(crypto.timingSafeEqual(left, right), true);
31+
}
32+
}
33+
}
34+
2135
common.expectsError(
2236
() => crypto.timingSafeEqual(Buffer.from([1, 2, 3]), Buffer.from([1, 2])),
2337
{
2438
code: 'ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH',
2539
type: RangeError,
26-
message: 'Input buffers must have the same length'
40+
message: 'Input buffers must have the same byte length'
2741
}
2842
);
2943

0 commit comments

Comments
 (0)