Lawsun d230cfbce0 first commit 1 anno fa
..
benchmark d230cfbce0 first commit 1 anno fa
lib d230cfbce0 first commit 1 anno fa
test d230cfbce0 first commit 1 anno fa
.travis.yml d230cfbce0 first commit 1 anno fa
HISTORY.md d230cfbce0 first commit 1 anno fa
LICENSE d230cfbce0 first commit 1 anno fa
README.md d230cfbce0 first commit 1 anno fa
index.js d230cfbce0 first commit 1 anno fa
package.json d230cfbce0 first commit 1 anno fa

README.md

scmp

travis npm downloads

Safe, constant-time comparison of Buffers.

Install

npm install scmp

Why?

To minimize vulnerability against timing attacks.

Example

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');
}