|
hace 1 año | |
---|---|---|
.. | ||
benchmark | hace 1 año | |
lib | hace 1 año | |
test | hace 1 año | |
.travis.yml | hace 1 año | |
HISTORY.md | hace 1 año | |
LICENSE | hace 1 año | |
README.md | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año |
Safe, constant-time comparison of Buffers.
npm install scmp
To minimize vulnerability against timing attacks.
const scmp = require('scmp');
const Buffer = require('safe-buffer').Buffer;
const hash = Buffer.from('e727d1464ae12436e899a726da5b2f11d8381b26', 'hex');
const givenHash = Buffer.from('e727e1b80e448a213b392049888111e1779a52db', 'hex');
if (scmp(hash, givenHash)) {
console.log('good hash');
} else {
console.log('bad hash');
}