initial commit for GitHub
This commit is contained in:
18
test/aes_test.js
Normal file
18
test/aes_test.js
Normal file
@@ -0,0 +1,18 @@
|
||||
new sjcl.test.TestCase("AES official known-answer tests", function (cb) {
|
||||
if (!sjcl.cipher.aes) {
|
||||
this.unimplemented();
|
||||
cb && cb();
|
||||
return;
|
||||
}
|
||||
|
||||
var i, kat = sjcl.test.vector.aes, tv, len, aes;
|
||||
|
||||
for (i=0; i<kat.length; i++) {
|
||||
tv = kat[i];
|
||||
len = 32 * tv.key.length;
|
||||
aes = new sjcl.cipher.aes(tv.key);
|
||||
this.require(sjcl.bitArray.equal(aes.encrypt(tv.pt), tv.ct), "encrypt "+len+" #"+i);
|
||||
this.require(sjcl.bitArray.equal(aes.decrypt(tv.ct), tv.pt), "decrypt "+len+" #"+i);
|
||||
}
|
||||
cb && cb();
|
||||
});
|
||||
Reference in New Issue
Block a user