This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/node_modules/csurf/node_modules/csrf/node_modules/scmp/benchmark/benchmark.js

16 lines
326 B
JavaScript

var scmp = require('../');
suite('scmp', function() {
var HASH1 = 'e727d1464ae12436e899a726da5b2f11d8381b26';
var HASH2 = 'f727d1464ae12436e899a726da5b2f11d8381b26';
bench('short-circuit compares', function() {
HASH1 === HASH2;
});
bench('scmp compares', function() {
scmp(HASH1, HASH2);
});
});