mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2026-04-23 22:34:47 -04:00
add SHA-1 implementation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
new sjcl.test.TestCase("SHA-1 from sha1sum", function (cb) {
|
||||
if (!sjcl.hash.sha1) {
|
||||
this.unimplemented();
|
||||
cb && cb();
|
||||
return;
|
||||
}
|
||||
|
||||
var i, kat=sjcl.test.vector.sha1, p=0, f=0;
|
||||
for (i=0; i<kat.length; i++) {
|
||||
var out = sjcl.hash.sha1.hash(kat[i][0]);
|
||||
this.require(sjcl.codec.hex.fromBits(out) == kat[i][1], i);
|
||||
}
|
||||
cb && cb();
|
||||
});
|
||||
Reference in New Issue
Block a user