Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freewil/scmp
Safe, constant-time comparison of Buffers
https://github.com/freewil/scmp
Last synced: 3 days ago
JSON representation
Safe, constant-time comparison of Buffers
- Host: GitHub
- URL: https://github.com/freewil/scmp
- Owner: freewil
- License: bsd-3-clause
- Created: 2013-02-11T00:48:51.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-31T21:15:06.000Z (10 months ago)
- Last Synced: 2025-01-12T11:13:20.457Z (11 days ago)
- Language: JavaScript
- Homepage:
- Size: 343 KB
- Stars: 50
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- License: LICENSE
Awesome Lists containing this project
README
# scmp
[![travis][travis-image]][travis-url]
[![npm][npm-image]][npm-url]
[![downloads][downloads-image]][downloads-url][travis-image]: https://travis-ci.org/freewil/scmp.svg?branch=master
[travis-url]: https://travis-ci.org/freewil/scmp[npm-image]: https://img.shields.io/npm/v/scmp.svg?style=flat
[npm-url]: https://npmjs.org/package/scmp[downloads-image]: https://img.shields.io/npm/dm/scmp.svg?style=flat
[downloads-url]: https://npmjs.org/package/scmpSafe, constant-time comparison of Buffers.
## Install
```
npm install scmp
```## Why?
To minimize vulnerability against [timing attacks](http://codahale.com/a-lesson-in-timing-attacks/).
## Example
```js
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');
}```