-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (42 loc) · 872 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"use strict";
const crypto = require("crypto");
/**
* Secure compare two strings
*
* @param {string} a
* @param {string} b
* @return {boolean}
*/
function secureCompare(a, b) {
let other;
let equalLen;
if (a.length === b.length) {
other = b;
equalLen = true;
} else {
other = a;
equalLen = false;
}
return crypto.timingSafeEqual(Buffer.from(a), Buffer.from(other)) && equalLen;
}
/**
* Secure compare two buffers
*
* @param {Buffer} a
* @param {Buffer} b
* @return {boolean}
*/
function secureCompareBuffer(a, b) {
let other;
let equalLen;
if (a.length === b.length) {
other = b;
equalLen = true;
} else {
other = a;
equalLen = false;
}
return crypto.timingSafeEqual(a, other) && equalLen;
}
module.exports.secureCompare = secureCompare;
module.exports.secureCompareBuffer = secureCompareBuffer;