forked from brix/crypto-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib-serializablecipher-test.js
51 lines (43 loc) · 2.31 KB
/
lib-serializablecipher-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
YUI.add('lib-serializablecipher-test', function (Y) {
var C = CryptoJS;
Y.Test.Runner.add(new Y.Test.Case({
name: 'SerializableCipher',
setUp: function () {
this.data = {};
this.data.message = C.lib.WordArray.create([0x00010203, 0x04050607, 0x08090a0b, 0x0c0d0e0f]);
this.data.key = C.lib.WordArray.create([0x10111213, 0x14151617, 0x18191a1b, 0x1c1d1e1f]);
this.data.iv = C.lib.WordArray.create([0x20212223, 0x24252627, 0x28292a2b, 0x2c2d2e2f]);
},
testEncrypt: function () {
// Compute expected
var aes = C.algo.AES.createEncryptor(this.data.key, { iv: this.data.iv });
var ciphertext = aes.finalize(this.data.message);
var expected = C.lib.CipherParams.create({
ciphertext: ciphertext,
key: this.data.key,
iv: this.data.iv,
algorithm: C.algo.AES,
mode: aes.cfg.mode,
padding: aes.cfg.padding,
blockSize: aes.blockSize,
formatter: C.format.OpenSSL
});
// Compute actual
var actual = C.lib.SerializableCipher.encrypt(C.algo.AES, this.data.message, this.data.key, { iv: this.data.iv });
// Test
Y.Assert.areEqual(expected.toString(), actual.toString());
Y.Assert.areEqual(expected.ciphertext.toString(), actual.ciphertext.toString());
Y.Assert.areEqual(expected.key.toString(), actual.key.toString());
Y.Assert.areEqual(expected.iv.toString(), actual.iv.toString());
Y.Assert.areEqual(expected.algorithm, actual.algorithm);
Y.Assert.areEqual(expected.mode, actual.mode);
Y.Assert.areEqual(expected.padding, actual.padding);
Y.Assert.areEqual(expected.blockSize, actual.blockSize);
},
testDecrypt: function () {
var encrypted = C.lib.SerializableCipher.encrypt(C.algo.AES, this.data.message, this.data.key, { iv: this.data.iv }) + '';
var decrypted = C.lib.SerializableCipher.decrypt(C.algo.AES, encrypted, this.data.key, { iv: this.data.iv });
Y.Assert.areEqual(this.data.message.toString(), decrypted.toString());
}
}));
}, '$Rev$');