Created
May 22, 2018 19:46
-
-
Save rictorres/70e46e37b6955a3d7de4256c222b7c06 to your computer and use it in GitHub Desktop.
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
'use strict' | |
const crypto = require('crypto') | |
/** | |
* Do a constant time string comparison. Always compare the complete strings | |
* against each other to get a constant time. This method does not short-cut | |
* if the two string's length differs. | |
* | |
* @param {string} a | |
* @param {string} b | |
* | |
* @return {boolean} | |
*/ | |
module.exports = function(a, b) { | |
const strA = String(a) | |
const strB = String(b) | |
const len = Math.max(Buffer.byteLength(strA), Buffer.byteLength(strB)) | |
const bufA = Buffer.alloc(len, 0, 'utf8') | |
bufA.write(strA) | |
const bufB = Buffer.alloc(len, 0, 'utf8') | |
bufB.write(strB) | |
return crypto.timingSafeEqual(bufA, bufB) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment