SAP-BTP-Spielwiese/app1/node_modules/scmp
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00
..
benchmark completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
test completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
.npmignore completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
.travis.yml completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
index.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
LICENSE completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
package.json completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
README.md completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00

scmp Build Status

Safe, constant-time comparison of strings.

Install

npm install scmp

Why?

To minimize vulnerability against timing attacks.

Examples

var scmp = require('scmp');

var hash      = 'e727d1464ae12436e899a726da5b2f11d8381b26';
var givenHash = 'e727e1b80e448a213b392049888111e1779a52db';

if (scmp(hash, givenHash)) {
  console.log('good hash');
} else {
  console.log('bad hash');
}