mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
53 lines
2.0 KiB
TypeScript
53 lines
2.0 KiB
TypeScript
/// <reference path="../../yui/yui.d.ts" />
|
|
/// <reference path="../cryptojs.d.ts" />
|
|
|
|
YUI.add('mode-cbc-test', function (Y) {
|
|
var C = CryptoJS;
|
|
|
|
Y.Test.Runner.add(new Y.Test.Case({
|
|
name: 'CBC',
|
|
|
|
setUp: function () {
|
|
this.data = {};
|
|
|
|
this.data.message = C.lib.WordArray.create([
|
|
0x00010203, 0x04050607, 0x08090a0b, 0x0c0d0e0f,
|
|
0x10111213, 0x14151617, 0x18191a1b, 0x1c1d1e1f
|
|
]);
|
|
this.data.key = C.lib.WordArray.create([0x20212223, 0x24252627, 0x28292a2b, 0x2c2d2e2f]);
|
|
this.data.iv = C.lib.WordArray.create([0x30313233, 0x34353637, 0x38393a3b, 0x3c3d3e3f]);
|
|
},
|
|
|
|
testEncryptor: function () {
|
|
// Compute expected
|
|
var expected = this.data.message.clone();
|
|
var aes = C.algo.AES.createEncryptor(this.data.key);
|
|
|
|
// First block XORed with IV, then encrypted
|
|
for (var i = 0; i < 4; i++) {
|
|
expected.words[i] ^= this.data.iv.words[i];
|
|
}
|
|
aes.encryptBlock(expected.words, 0);
|
|
|
|
// Subsequent blocks XORed with previous crypted block, then encrypted
|
|
for (var i = 4; i < 8; i++) {
|
|
expected.words[i] ^= expected.words[i - 4];
|
|
}
|
|
aes.encryptBlock(expected.words, 4);
|
|
|
|
// Compute actual
|
|
var actual = C.AES.encrypt(this.data.message, this.data.key, { iv: this.data.iv, mode: C.mode.CBC, padding: C.pad.NoPadding }).ciphertext;
|
|
|
|
// Test
|
|
Y.Assert.areEqual(expected.toString(), actual.toString());
|
|
},
|
|
|
|
testDecryptor: function () {
|
|
var encrypted = C.AES.encrypt(this.data.message, this.data.key, { iv: this.data.iv, mode: C.mode.CBC, padding: C.pad.NoPadding });
|
|
var decrypted = C.AES.decrypt(encrypted, this.data.key, { iv: this.data.iv, mode: C.mode.CBC, padding: C.pad.NoPadding });
|
|
|
|
Y.Assert.areEqual(this.data.message.toString(), decrypted.toString());
|
|
}
|
|
}));
|
|
}, '$Rev$');
|