scmp

2.1.0 • Public • Published

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

Package Sidebar

Install

npm i scmp

Weekly Downloads

1,287,318

Version

2.1.0

License

BSD-3-Clause

Unpacked Size

7.93 kB

Total Files

10

Last publish

Collaborators

  • freewil