initial commit for GitHub

This commit is contained in:
Mike Hamburg
2010-05-26 15:34:42 -07:00
commit 2e423d9517
155 changed files with 31749 additions and 0 deletions

16
test/pbkdf2_test.js Normal file
View File

@@ -0,0 +1,16 @@
/* From http://www.cryptosys.net/manapi/api_PBE_Kdf2.html */
new sjcl.test.TestCase("PBKDF2", function (cb) {
if (!sjcl.misc.pbkdf2 || !sjcl.misc.hmac || !sjcl.hash.sha256) {
this.unimplemented();
cb && cb();
return;
}
var h = sjcl.codec.hex, password = "password", salt = "78 57 8E 5A 5D 63 CB 06", count = 2048, output,
goodOutput = "97b5a91d35af542324881315c4f849e327c4707d1bc9d322";
output = sjcl.misc.pbkdf2(password, h.toBits(salt), count);
output = h.fromBits(output);
this.require(output.substr(0,goodOutput.length) == goodOutput);
cb && cb();
});