Time slots app prototype
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.5 KiB

import test from "tape";
import vectors from "hash-test-vectors";
import createHash from "./browser";
var algorithms = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160', 'ripemd160'];
var encodings = ['hex', 'base64']; // ignore binary
vectors.forEach(function (vector) {
vector.ripemd160 = vector.rmd160;
});
algorithms.forEach(function (algorithm) {
test('test ' + algorithm + ' against test vectors', function (t) {
vectors.forEach(function (obj, i) {
var input = Buffer.from(obj.input, 'base64');
var node = obj[algorithm];
var js = createHash(algorithm).update(input).digest('hex');
t.equal(js, node, algorithm + '(testVector[' + i + ']) == ' + node);
});
encodings.forEach(function (encoding) {
vectors.forEach(function (obj, i) {
var input = Buffer.from(obj.input, 'base64').toString(encoding);
var node = obj[algorithm];
var js = createHash(algorithm).update(input, encoding).digest('hex');
t.equal(js, node, algorithm + '(testVector[' + i + '], ' + encoding + ') == ' + node);
});
});
vectors.forEach(function (obj, i) {
var input = Buffer.from(obj.input, 'base64');
var node = obj[algorithm];
var hash = createHash(algorithm);
hash.end(input);
var js = hash.read().toString('hex');
t.equal(js, node, algorithm + '(testVector[' + i + ']) == ' + node);
});
t.end();
});
});