forked from mitro-co/keyczarjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyczar_test.js
302 lines (253 loc) · 13.5 KB
/
keyczar_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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
Copyright 2014 Lectorius, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/** @suppress{duplicate} */
var assert = require('assert');
/** @suppress{duplicate} */
var fs = require('fs');
/** @suppress{duplicate} */
var keyczar = require('./keyczar');
/** @suppress{duplicate} */
var keyczar_util = require('./keyczar_util');
/** @suppress{duplicate} */
var test_util = require('./test_util');
function readTestData(name) {
return fs.readFileSync('testdata/' + name, {encoding: 'utf-8'});
}
function readKey(name) {
return keyczar.fromJson(readTestData(name));
}
// the message as written by Java Keyczar
var EXAMPLE_MESSAGE = 'hello world message';
function testKeyczarRsa() {
var privatekey = readKey('privatekey.json');
var encrypted = readTestData('privatekey_encrypted');
var decrypted = privatekey.decrypt(encrypted);
assert.equal(EXAMPLE_MESSAGE, decrypted);
// round trip the message
var encrypted2 = privatekey.encrypt(EXAMPLE_MESSAGE);
assert(encrypted2 != encrypted);
decrypted = privatekey.decrypt(encrypted2);
assert.equal(EXAMPLE_MESSAGE, decrypted);
// round trip the message using the public key
var publickey = readKey('publickey.json');
var encrypted3 = publickey.encrypt(EXAMPLE_MESSAGE);
// there is a very small probability these will be the same; if the same seed is generated
assert(encrypted3 != encrypted);
assert(encrypted3 != encrypted2);
decrypted = privatekey.decrypt(encrypted3);
assert.equal(EXAMPLE_MESSAGE, decrypted);
assert.throws(function() { publickey.decrypt(encrypted3); }, TypeError);
}
// Round trip every possible byte to ensure JS encoding doesn't screw things up
function testEncryptAllBytes() {
var message = '';
for (var i = 0; i < 256; i++) {
message += String.fromCharCode(i);
}
assert.equal(256, message.length);
var privateKey = readKey('privatekey.json');
assert.equal(message, privateKey.decrypt(privateKey.encrypt(message)));
}
function testSerializeKeys() {
// round trip the keys to/from JSON
var privateKey = readKey('privatekey.json');
var publicKey = privateKey.exportPublicKey();
var json = publicKey.toJson();
var serializedKey = keyczar.fromJson(json);
var encrypted = serializedKey.encrypt(EXAMPLE_MESSAGE);
serializedKey = keyczar.fromJson(privateKey.toJson());
assert.equal(EXAMPLE_MESSAGE, serializedKey.decrypt(encrypted));
}
function testMaxLengthData() {
var privateKey = readKey('privatekey.json');
// Round trip maximum length data
var maxEncryptLength = Math.ceil(privateKey.primary.size / 8) - 2 * 20 - 2;
var maxLengthData = '';
for (var i = 0; i < maxEncryptLength; i++) {
maxLengthData += 'a';
}
var encrypted = privateKey.encrypt(maxLengthData);
assert.equal(maxLengthData, privateKey.decrypt(encrypted));
// any extra byte should throw
assert.throws(function() { privateKey.encrypt(maxLengthData + 'a'); });
}
function testMakeExportRsa() {
// generate a small key to make this fast
var options = {
size: 512
};
var privateKey = keyczar.create(
keyczar.TYPE_RSA_PRIVATE, keyczar.PURPOSE_DECRYPT_ENCRYPT, options);
assert.equal(keyczar.TYPE_RSA_PRIVATE, privateKey.metadata.type);
var publicKey = privateKey.exportPublicKey();
assert.equal(keyczar.TYPE_RSA_PUBLIC, publicKey.metadata.type);
// Test round tripping using the exported key
var encrypted = publicKey.encrypt(EXAMPLE_MESSAGE);
assert.equal(EXAMPLE_MESSAGE, privateKey.decrypt(encrypted));
}
function testSymmetric() {
var key = readKey('symmetric.json');
var encrypted = readTestData('symmetric_encrypted');
var decrypted = key.decrypt(encrypted);
assert.equal(EXAMPLE_MESSAGE, decrypted);
var encrypted2 = key.encrypt(EXAMPLE_MESSAGE);
decrypted = key.decrypt(encrypted2);
assert(encrypted2 != encrypted);
assert.equal(EXAMPLE_MESSAGE, decrypted);
// round trip the key
key = keyczar.fromJson(key.toJson());
var encrypted3 = key.encrypt(EXAMPLE_MESSAGE);
assert.equal(EXAMPLE_MESSAGE, key.decrypt(encrypted));
assert.equal(EXAMPLE_MESSAGE, key.decrypt(encrypted2));
assert.equal(EXAMPLE_MESSAGE, key.decrypt(encrypted3));
// create a new key
key = keyczar.create(keyczar.TYPE_AES);
assert.equal(keyczar.TYPE_AES, key.metadata.type);
encrypted = key.encrypt(EXAMPLE_MESSAGE);
assert.equal(EXAMPLE_MESSAGE, key.decrypt(encrypted));
}
function testRawBinary() {
var key = readKey('symmetric.json');
// not base64 encoded
var encrypted = key.encryptBinary(EXAMPLE_MESSAGE);
assert.equal(0x00, encrypted.charCodeAt(0));
var decrypted = key.decryptBinary(encrypted);
assert.equal(EXAMPLE_MESSAGE, decrypted);
// it must be possible to encrypt/decrypt this invalid utf-8 string: it
// can be generated by Keyczar's session encryption
key = readKey('symmetric_binary.json');
encrypted = keyczar_util.decodeBase64Url(readTestData('symmetric_binary_encrypted'));
decrypted = key.decryptBinary(encrypted);
// '\x96' cannot be decoded from UTF-8: it is an invalid UTF-8 sequence
assert.equal('\x96', decrypted.charAt(decrypted.length-1));
}
function testSession() {
var publickey = readKey('publickey.json');
var session = keyczar.createSessionCrypter(publickey);
var ciphertext = session.encryptBinary(EXAMPLE_MESSAGE);
var material = session.sessionMaterial;
var privatekey = readKey('privatekey.json');
session = keyczar.createSessionCrypter(privatekey, material);
assert.equal(EXAMPLE_MESSAGE, session.decryptBinary(ciphertext));
var longMessage = 'long message ';
while (longMessage.length < 500) {
longMessage += longMessage;
}
// repeat this multiple times to ensure random binary data passes through okay
// this caught the invalid UTF-8 decoding bug
for (var j = 0; j < 5; j++) {
ciphertext = keyczar.encryptWithSession(publickey, longMessage);
assert.equal(longMessage, keyczar.decryptWithSession(privatekey, ciphertext));
process.stdout.write('!');
}
}
function testStringEncoding() {
var unicodeMessage = 'Emoji key: \ud83d\udd11';
var key = readKey('symmetric.json');
var encrypted = key.encrypt(unicodeMessage);
assert.equal(unicodeMessage, key.decrypt(encrypted));
// pass the unicode data through a session
var privateKey = readKey('privatekey.json');
encrypted = keyczar.encryptWithSession(privateKey, unicodeMessage);
assert.equal(unicodeMessage, keyczar.decryptWithSession(privateKey, encrypted));
var binaryMessage = '';
for (var i = 0; i < 256; i++) {
binaryMessage += String.fromCharCode(i);
}
encrypted = key.encrypt(binaryMessage);
assert.equal(binaryMessage, key.decrypt(encrypted));
}
var ENCRYPTED_KEYCZAR = {
encrypted: true,
name: "Test",
purpose: "DECRYPT_AND_ENCRYPT",
type: "AES",
versions: [{
"exportable": false,
"status": "PRIMARY",
"versionNumber": 1
}]
};
var ENCRYPTED_JSON = {
"cipher": "AES128",
"hmac": "HMAC_SHA1",
"iterationCount": 4096,
"iv": "z3BdMSyqfrh-qmv1YLXvFg",
"key": "ZoavQvg_IRDGG57NQIn4kjuBRyRsX3p6JPWX1jnNUBtUQyAHTd381CzKyqOZIIVt8nIkkzdN3JjtTyYMQSEE9ZTVZ_RVC1enTzLZuEL5gZCbmJyRzX1eBdpTN1bFbIt3aOMiFxjFzP-O67ErGnUHpBHmmCxmau-MBUpCd6Su-eum3SIERsaMzsMDEcivCrd5SW20HokMWCxu_GImVxyQuA",
"salt": "EwDMYR65XcUmvggvoW1GMw"
};
function testEncryptedKey() {
var encryptedKey = JSON.stringify({
"1": JSON.stringify(ENCRYPTED_JSON),
"meta": JSON.stringify(ENCRYPTED_KEYCZAR)
});
assert.throws(function() { keyczar.fromJson(encryptedKey); });
// TODO: test round tripping this to/from Java
var decryptedKey = keyczar.fromJson(encryptedKey, "pass");
assert.equal('hello', decryptedKey.decrypt(decryptedKey.encrypt('hello')));
assert.throws(function() { decryptedKey.toJson(); });
var key = keyczar.create(keyczar.TYPE_AES);
var encryptedKey2 = key.toJsonEncrypted('hellopassword');
assert.throws(function() { keyczar.fromJson(encryptedKey2); });
var key2 = keyczar.fromJson(encryptedKey2, 'hellopassword');
assert(key2.metadata.encrypted);
assert.equal('hello', key2.decrypt(key.encrypt('hello')));
// throws to protect accidental errors
assert.throws(function() { key2.toJson(); });
// explicitly exporting the decrypted key works
var s = key2.exportDecryptedJson();
var key3 = keyczar.fromJson(s);
assert.equal('hello', key2.decrypt(key3.encrypt('hello')));
}
function testEncryptedKeyBadPassword() {
// key "decrypts" (padding checks correctly), but is garbage
// previously caused a syntax error
var encryptedKey = "{\"1\":\"{\\\"salt\\\":\\\"J-CXelpy0nYAonuBJQ7O-g\\\",\\\"iterationCount\\\":50000,\\\"hmac\\\":\\\"HMAC_SHA1\\\",\\\"cipher\\\":\\\"AES128\\\",\\\"iv\\\":\\\"DeB42VjXh3qXRk-ToO5IMg\\\",\\\"key\\\":\\\"WB4jACveA48SUEq2fRYM6Q40ym5H_jE71bKwqhG9MC6sjWi7ySssPY4BS1ho1pYYv6DB2jFbMozgbdSGdfduHXLb6Xr-27Atq97tKWJ2H5kogU3plQ5QIlsMT85gh3vHiki0EpUzfyZzEN8dAxPqU_-BTYsA32yydf26-9iYBHUBGztk_FWuDof_P-KmsO_D0Xqcu4wKBRQylCaaHQa3ylIzhKkSiG0bSdv_yGdSSp5-VowsqaHdVSEkd5Nn8MrTI0o6UR9Tj5NWwY0876T8q5n7qWg5DJVsNUc6fZEh4Cg6uC_z9LF9im430WR5pa5iFSKizE4QtNStTwhmAV0KDUPBZtjqtTdKdf1h4JWw-VEz-F_9azVDO9Rx8gmRMzU7-ckNR-KyIboA7jp4pUCftbfjtTnM1-gcGMS_I2I9fGU5h58DCUzQpel9i4bxXpvnd7SnwnUov2oL4zguyMkTqZ5wr4ha2XP4PkIRnGoPyxSqenD801utb-dj3cGobF2NU9QuOI680ujAlhj9X677o5sfy6iFdNlSkynNn2Lwfy3imJnF1zozZHknkqFBHur-WsIgWjQh_WzcwG8uOm1mwTY-k9_LgSGa_LM-RGKHN-nbLjGIpCeLFHnww8j6nMI-A-5SYaLIfKMHcv2Y4cKc_cc9DHs9V5eNBo88y7BChB-jHFt5kRYMtHCc47FRDslsO8tZ7JVScoOt_l4hVKUMQe7_rh-no2sr6b7cow8Tsm8s13n0fBGQPPhYknnTtp4ejdwN0ctbDWG1Y-TT5jZGuijWBFm0dyEkmCbX9J0O7PbhOPnsxvA7Eycsz0ScSEiFXBGcPun2RrgAlfbDapkJJRmXT1aLXZNgy5hggGisBx4CTfxsuJhyZTSiB4-bbJj-t_WDRcMKUIrEvoDiV2-h5CI6QJySFjBFsEvHlQw4sNwnIoXGFLZKyQEo6T6A8CBLyZWWHwH-LZlXJXIxYO6wthLRvLU0A8hVRYrKgE_gzPHjqVOFDYbKesNXHZ7QwC2G8-OUFXb_HhKDzeOJLVY_RQZImxB-lRF7jmpui8SarDMa7LlHnciQOdQkSlYN0_RM3b4ebm1KQHcCAK2dgUb7WgidNuH-k0JGeeliupDGyzAKsJTZM4BKmz6E9-Cgq-AYDcF9exd7SvC1T2uOoR4By39YF_ajotV-SU-H-0nqRpxXAn2DPtsEnB_Rj4rBH8shuPtGrjSqP1iDClGIqGZYADIQqqhhu6GRbdzUkekN8DsA2vtGuZrAsp49vRinq7Li3d1OoaJL0KQqNKT2xOvGCZsIIDSROtD4YuDFJA9I4qPTU9zT5x0rYwLWglAplUB48SWmks8qBJ99s2UbT2O8yzr7W9iFDRyuIeBRjR861_44CUFC5_xacy6gvS4DU2PKnraexXtqFAS4qkfDYfnqDEuy2QN8UaIDl3fVce3bH1saHLTIWo6PBuOBz7VIyH9ElAapk2vwg4ui1TSMPOC9yn8uDByPuRXnWymfaS6i5uVeKdWjnPaJiFcKL_cstn-zSPNj04QvNXffDfE0vLZ3ChrSruxbrgIE_2Yid_9K3cP_FcMPw8sKrQfDLMThdG8BwQqiUBiRbh7u-ZQxkdWe98CkTeGZvV9kwnruu0AyVgkbeJOA7jlqh7ACp4wMJ0X5jcdB2gkguWMkjF7z1xWyC4DYz4JC9UEVf-NMa9U2HCPv2YpXdqtueITLLEafAAjjEQTkeAVhddVxnmwn7cvKz4DOQOxDR-SHOd1_2CwTpyvJVopzZnd_7Pm-XrqgV9MMQorkBBIANHGNqZ9vwvubIic4KI280zdI0lzTQStoPny5VD-3JG-9PZa3T6d5kBsaYVgP4GwM__qGi0wnYaoSGdWlFkxugChoxtlFIxgowy6gRxCSbACHAdZdur9Er1cS-GYC1ZL0Mwd3ZFjBb7awESt461X3tEZaC4toHzMFlC9Baw2dvSRJAZRAZSIMDEEHpO0xTc-HvRl-0rb5us0LZsMkY1-X84bhqdgvlqcTlttIL0fZmaFAuU3ltF4kEfRpfeSFKc8a6coTy5v2qEOa9T091ZpIE-KJFr_CHRc-PnpPGmU0lq0fm3mrqWsnLxl6NhkJPmLmcQcNPppFtQAC8Ksal4VVqx6VQudoEtpWkbbSIgJMCrBMS9KbFApptIEID3_MYVkJoxMff-87nMQ9CkwBoCgoDZrxvAgCTEvVrcft6zRdLEwUEeJgBnwJwYZXXjetSmSTja4eto9giHLvEvdk44Ilq4jR9RJYWGZ5ZDkvp0AKgpqj5b_0GGfjUZjK\\\"}\",\"meta\":\"{\\\"name\\\":\\\"\\\",\\\"purpose\\\":\\\"DECRYPT_AND_ENCRYPT\\\",\\\"type\\\":\\\"RSA_PRIV\\\",\\\"encrypted\\\":true,\\\"versions\\\":[{\\\"exportable\\\":false,\\\"status\\\":\\\"PRIMARY\\\",\\\"versionNumber\\\":1}]}\"}";
try {
keyczar.fromJson(encryptedKey, 'badpass');
assert(false, 'expected exception');
} catch (e) {
assert(e.message.indexOf('password incorrect') != -1);
}
}
function testSigning() {
// private key can sign and verify
var key = keyczar.fromJson(readTestData('privatekey_sign.json'));
var signature = readTestData('privatekey_sign_signed');
assert(key.verify(EXAMPLE_MESSAGE, signature));
// simple RSA signatures are deterministic (no random padding)
assert.equal(signature, key.sign(EXAMPLE_MESSAGE));
// public key can verify
var publicKey = keyczar.fromJson(readTestData('publickey_sign.json'));
assert(publicKey.verify(EXAMPLE_MESSAGE, signature));
// round trip the keys
key = keyczar.fromJson(key.toJson());
assert.equal(signature, key.sign(EXAMPLE_MESSAGE));
publicKey = keyczar.fromJson(publicKey.toJson());
assert(publicKey.verify(EXAMPLE_MESSAGE, signature));
// generate a key
var options = {
size: 512
};
key = keyczar.create(keyczar.TYPE_RSA_PRIVATE, keyczar.PURPOSE_SIGN_VERIFY, options);
signature = key.sign(EXAMPLE_MESSAGE);
publicKey = keyczar.fromJson(key.exportPublicKey().toJson());
assert(publicKey.verify(EXAMPLE_MESSAGE, signature));
// test encrypting the signing key
var encrypted = key.toJsonEncrypted('password');
var decrypted = keyczar.fromJson(encrypted, 'password');
assert.equal(signature, decrypted.sign(EXAMPLE_MESSAGE));
}
test_util.runTests([testKeyczarRsa, testEncryptAllBytes, testSerializeKeys, testMaxLengthData,
testMakeExportRsa, testSymmetric, testRawBinary, testSession, testStringEncoding,
testEncryptedKey, testEncryptedKeyBadPassword, testSigning]);