typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
55 lines (45 loc) • 2.4 kB
text/typescript
/// <reference path="../../yui/yui.d.ts" />
/// <reference path="../cryptojs.d.ts" />
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$');