-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmcrypt.js
526 lines (485 loc) · 15.4 KB
/
mcrypt.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
/*
* jsmcrypt version 0.1 - Copyright 2012 F. Doering
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307 USA
*/
//this creates a static class mcrypt that is already initialized
exports.mcrypt=mcrypt?mcrypt:new function(){
//this allows the user to create instances of this class that keep
//track of their own key, cipher, and mode
//calling syntax becomes var myMcrypt=new mcrypt();
//var mcrypt=function(){
/**********
* Private *
**********/
/************************
* START OF CIPHER DEFFS *
************************/
/* Cipher Data
* This is an object, keyed with the cipher name whose value is an
* array containing the number of octets (bytes) in the block size,
* and the number of octets in the key.
*/
var ciphers={ // block size, key size
"rijndael-128" :[ 16, 32],
"rijndael-192" :[ 24, 32],
"rijndael-256" :[ 32, 32],
"serpent" :[ 16, 32]
}
/* blockCipherCalls
* This object is keyed by the cipher names and the vaules are
* functions that calls external block ciphers to encypt or
* decrypt a single block. These functions must have the arguments:
* function(cipher_name,block,key,encrypt)
* where: chipher_name is the text of the cipher name,
* block is an array of inegers representing octets
* key is a string
* and encrypt indicates whether it should encrypt or decrypt
* the block.
* the function should modify the block as its output
*/
var blockCipherCalls={};
blockCipherCalls['rijndael-128']=function(cipher,block,key,encrypt){
if(key.length<32)
key+=Array(33-key.length).join(String.fromCharCode(0));
if(encrypt)
Rijndael.Encrypt(block,key);
else
Rijndael.Decrypt(block,key);
return block;
};
blockCipherCalls['rijndael-192']=blockCipherCalls['rijndael-128'];
blockCipherCalls['rijndael-256']=blockCipherCalls['rijndael-128'];
blockCipherCalls.serpent=function(cipher,block,key,encrypt){
if(encrypt)
Serpent.Encrypt(block);
else
Serpent.Decrypt(block);
return block;
};
blockCipherCalls.serpent.init=function(cipher,key,encrypt){
var keyA=[];
for(var i=0;i<key.length;i++)
keyA[i]=key.charCodeAt(i);
Serpent.Init(keyA);
};
blockCipherCalls.serpent.deinit=function(cipher,key,encrypt){
Serpent.Close();
};
/**********************
* END OF CIPHER DEFFS *
**********************/
/*********
* Public *
*********/
var pub={};
/* Encrypt
* This function encypts a plaintext message with an IV, key, ciphertype, and mode
* The message, key, and IV should be extended ascii strings
* the ciphertype should be a string that is a supported cipher (see above)
* the mode should be a string that is a supported mode of operation
* the key, cipher type, and mode will default to the last used
* these can be set without encypting by "encrypting" a null message
*/
pub.Encrypt=function(message,IV,key, cipher, mode){
return pub.Crypt(true,message,IV,key, cipher, mode);
};
/* Decrypt
* See Encrypt for usage
*/
pub.Decrypt=function(ctext,IV,key, cipher, mode){
return pub.Crypt(false,ctext,IV,key, cipher, mode);
};
/* Crypt
* This function can encrypt or decrypt text
*/
pub.Crypt=function(encrypt,text,IV,key, cipher, mode){
if(key) cKey=key; else key=cKey;
if(cipher) cCipher=cipher; else cipher=cCipher;
if(mode) cMode=mode; else mode=cMode;
if(!text)
return true;
if(blockCipherCalls[cipher].init)
blockCipherCalls[cipher].init(cipher,key,encrypt);
var blockS=ciphers[cipher][0];
var chunkS=blockS;
var iv=new Array(blockS);
switch(mode){
case 'cfb':
chunkS=1;//8-bit
case 'cbc':
case 'ncfb':
case 'nofb':
case 'ctr':
if(!IV)
throw "mcrypt.Crypt: IV Required for mode "+mode;
if(IV.length!=blockS)
throw "mcrypt.Crypt: IV must be "+blockS+" characters long for "+cipher;
for(var i = blockS-1; i>=0; i--)
iv[i] = IV.charCodeAt(i);
break;
case 'ecb':
break;
default:
throw "mcrypt.Crypt: Unsupported mode of opperation"+cMode;
}
var chunks=Math.ceil(text.length/chunkS);
var orig=text.length;
text+=Array(chunks*chunkS-orig+1).join(String.fromCharCode(0));//zero pad the end
var out='';
switch(mode){
case 'ecb':
for(var i = 0; i < chunks; i++){
for(var j = 0; j < chunkS; j++)
iv[j]=text.charCodeAt((i*chunkS)+j);
blockCipherCalls[cipher](cipher,iv, cKey,encrypt);
for(var j = 0; j < chunkS; j++)
out+=String.fromCharCode(iv[j]);
}
break;
case 'cbc':
if(encrypt){
for(var i = 0; i < chunks; i++){
for(var j = 0; j < chunkS; j++)
iv[j]=text.charCodeAt((i*chunkS)+j)^iv[j];
blockCipherCalls[cipher](cipher,iv, cKey,true);
for(var j = 0; j < chunkS; j++)
out+=String.fromCharCode(iv[j]);
}
}
else{
for(var i = 0; i < chunks; i++){
var temp=iv;
iv=new Array(chunkS);
for(var j = 0; j < chunkS; j++)
iv[j]=text.charCodeAt((i*chunkS)+j);
var decr=iv.slice(0);
blockCipherCalls[cipher](cipher,decr, cKey,false);
for(var j = 0; j < chunkS; j++)
out+=String.fromCharCode(temp[j]^decr[j]);
}
}
break;
case 'cfb':
for(var i = 0; i < chunks; i++){
var temp=iv.slice(0);
blockCipherCalls[cipher](cipher,temp, cKey,true);
temp=temp[0]^text.charCodeAt(i);
iv.push(encrypt?temp:text.charCodeAt(i));
iv.shift();
out+=String.fromCharCode(temp);
}
out=out.substr(0,orig);
break;
case 'ncfb':
for(var i = 0; i < chunks; i++){
blockCipherCalls[cipher](cipher,iv, cKey,true);
for(var j = 0; j < chunkS; j++){
var temp=text.charCodeAt((i*chunkS)+j);
iv[j]=temp^iv[j];
out+=String.fromCharCode(iv[j]);
if(!encrypt)
iv[j]=temp;
}
}
out=out.substr(0,orig);
break;
case 'nofb':
for(var i = 0; i < chunks; i++){
blockCipherCalls[cipher](cipher,iv, cKey,true);
for(var j = 0; j < chunkS; j++)
out+=String.fromCharCode(text.charCodeAt((i*chunkS)+j)^iv[j]);
}
out=out.substr(0,orig);
break;
case 'ctr':
for(var i = 0; i < chunks; i++){
temp=iv.slice(0);
blockCipherCalls[cipher](cipher,temp, cKey,true);
for(var j = 0; j < chunkS; j++)
out+=String.fromCharCode(text.charCodeAt((i*chunkS)+j)^temp[j]);
var carry=1;
var index=chunkS;
do{
index--;
iv[index]+=1;
carry=iv[index]>>8;
iv[index]&=255;
}while(carry)
}
out=out.substr(0,orig);
break;
}
if(blockCipherCalls[cipher].deinit)
blockCipherCalls[cipher].deinit(cipher,key,encrypt);
return out;
};
//Gets the block size of the specified cipher
pub.get_block_size=function(cipher,mode){
if(!cipher) cipher=cCipher;
if(!ciphers[cipher])
return false;
return ciphers[cipher][0];
}
//Gets the name of the specified cipher
pub.get_cipher_name=function(cipher){
if(!cipher) cipher=cCipher;
if(!ciphers[cipher])
return false;
return cipher;
}
//Returns the size of the IV belonging to a specific cipher/mode combination
pub.get_iv_size=function(cipher,mode){
if(!cipher) cipher=cCipher;
if(!ciphers[cipher])
return false;
return ciphers[cipher][0];
}
//Gets the key size of the specified cipher
pub.get_key_size=function(cipher,mode){
if(!cipher) cipher=cCipher;
if(!ciphers[cipher])
return false;
return ciphers[cipher][1];
}
//Gets an array of all supported ciphers
pub.list_algorithms=function(){
var ret=[];
for(var i in ciphers)
ret.push(i);
return ret;
}
pub.list_modes=function(){
return ['ecb','cbc','cfb','ncfb','nofb','ctr'];
}
/**********
* Private *
**********/
var cMode='cbc';
var cCipher='rijndael-128';
var cKey='12345678911234567892123456789312';
return pub;
};
/*
* jsaes version 0.1 - Copyright 2006 B. Poettering
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307 USA
*/
var Rijndael=Rijndael?Rijndael: new function(){
/*
*
* This is a javascript implementation of the rijndael block cipher. Key lengths
* of 128, 192 and 256 bits, and block lengths of 128, 192, and 256 bit in any
* combination are supported.
*
* The well-functioning of the encryption/decryption routines has been
* verified for different key lengths with the test vectors given in
* FIPS-197, Appendix C.
*
* The following code example enciphers the plaintext block '00 11 22 .. EE FF'
* with the 256 bit key '12345678911234567892123456789312'.
*
* var block = new Array(16);
* for(var i = 0; i < 16; i++)
* block[i] = 0x11 * i;
*
* var key = '12345678911234567892123456789312';
*
* rijndael.Encrypt(block, key);
*
*/
/******************************************************************************/
//public
var pub={};
pub.Encrypt=function(block, key) {
crypt(block,key,true);
}
pub.Decrypt=function(block, key) {
crypt(block,key,false);
}
//private
var sizes=[16,24,32];
//key bytes 16, 24, 32 block bytes
var rounds=[[ 10, 12, 14],// 16
[ 12, 12, 14],// 24
[ 14, 14, 14]];// 32
var expandedKeys={};//object to keep keys we've already expanded in.
var ExpandKey=function(key) {
if(!expandedKeys[key]){
var kl = key.length, ks, Rcon = 1;
ks=15<<5;
keyA=new Array(ks);
for(var i = 0; i < kl; i++)
keyA[i]=key.charCodeAt(i);
for(var i = kl; i < ks; i += 4) {
var temp = keyA.slice(i - 4, i);
if (i % kl == 0) {
temp = [ Sbox[temp[1]] ^ Rcon, Sbox[temp[2]],
Sbox[temp[3]], Sbox[temp[0]]];
if ((Rcon <<= 1) >= 256)
Rcon ^= 0x11b;
}
else if ((kl > 24) && (i % kl == 16))
temp = [Sbox[temp[0]], Sbox[temp[1]],
Sbox[temp[2]], Sbox[temp[3]]];
for(var j = 0; j < 4; j++)
keyA[i+j] = keyA[ i+j-kl ] ^ temp[j];
}
expandedKeys[key]=keyA;
}
return expandedKeys[key];
}
var crypt=function(block, key,encrypt) {
var bB=block.length;
var kB = key.length;
var bBi=0;
var kBi=0;
switch(bB){
case 32:bBi++;
case 24:bBi++;
case 16:break;
default: throw 'rijndael: Unsupported block size: '+block.length;
}
switch(kB){
case 32:kBi++;
case 24:kBi++;
case 16:break;
default: throw 'rijndael: Unsupported key size: '+key.length;
}
var r=rounds[bBi][kBi];
key=ExpandKey(key);
var end=r*bB;
if(encrypt){
AddRoundKey(block, key.slice(0, bB));
var SRT=ShiftRowTab[bBi];
for(var i = bB; i < end; i += bB) {
SubBytes(block, Sbox);
ShiftRows(block, SRT);
MixColumns(block);
AddRoundKey(block, key.slice(i, i + bB));
}
SubBytes(block, Sbox);
ShiftRows(block, SRT);
AddRoundKey(block, key.slice(i, i+bB));
}
else{ //decrypt
AddRoundKey(block, key.slice(end, end+bB));
var SRT=ShiftRowTab_Inv[bBi];
ShiftRows(block, SRT);
SubBytes(block, Sbox_Inv);
for(var i = end-bB; i >= bB; i -= bB) {
AddRoundKey(block, key.slice(i, i + bB));
MixColumns_Inv(block);
ShiftRows(block, SRT);
SubBytes(block, Sbox_Inv);
}
AddRoundKey(block, key.slice(0, bB));
}
}
/******************************************************************************/
/* The following lookup tables and functions are for internal use only! */
var Sbox = new Array(99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,
118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,
147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,
7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,
47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,
251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,
188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,
100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,
50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,
78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,
116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,
158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,
137,13,191,230,66,104,65,153,45,15,176,84,187,22);
//row 0 1 2 3 block Bytes
var rowshifts=[[0, 1, 2, 3], //16
[0, 1, 2, 3], //24
[0, 1, 3, 4]]; //32
var ShiftRowTab = Array(3);
for(var i=0;i<3;i++){
ShiftRowTab[i]=Array(sizes[i]);
for(var j=sizes[i];j>=0;j--)
ShiftRowTab[i][j]=(j+(rowshifts[i][j&3]<<2))%sizes[i];
}
var Sbox_Inv = new Array(256);
for(var i = 0; i < 256; i++)
Sbox_Inv[Sbox[i]] = i;
var ShiftRowTab_Inv = Array(3);
for(var i=0;i<3;i++){
ShiftRowTab_Inv[i]=Array(sizes[i]);
for(var j=sizes[i];j>=0;j--)
ShiftRowTab_Inv[i][ShiftRowTab[i][j]]=j;
}
var xtime = new Array(256);
for(var i = 0; i < 128; i++) {
xtime[i] = i << 1;
xtime[128 + i] = (i << 1) ^ 0x1b;
}
var SubBytes=function(state, sbox) {
for(var i = state.length-1; i>=0; i--)
state[i] = sbox[state[i]];
}
var AddRoundKey=function (state, rkey) {
for(var i=state.length-1 ; i >=0 ; i--)
state[i] ^= rkey[i];
}
var ShiftRows=function(state, shifttab) {
var h = state.slice(0);
for(var i = state.length-1 ; i >=0; i--)
state[i] = h[shifttab[i]];
}
var MixColumns= function(state) {
for(var i = state.length-4; i >=0; i -= 4) {
var s0 = state[i + 0], s1 = state[i + 1];
var s2 = state[i + 2], s3 = state[i + 3];
var h = s0 ^ s1 ^ s2 ^ s3;
state[i + 0] ^= h ^ xtime[s0 ^ s1];
state[i + 1] ^= h ^ xtime[s1 ^ s2];
state[i + 2] ^= h ^ xtime[s2 ^ s3];
state[i + 3] ^= h ^ xtime[s3 ^ s0];
}
}
var MixColumns_Inv=function(state) {
for(var i = state.length-4; i >=0; i -= 4) {
var s0 = state[i + 0], s1 = state[i + 1];
var s2 = state[i + 2], s3 = state[i + 3];
var h = s0 ^ s1 ^ s2 ^ s3;
var xh = xtime[h];
var h1 = xtime[xtime[xh ^ s0 ^ s2]] ^ h;
var h2 = xtime[xtime[xh ^ s1 ^ s3]] ^ h;
state[i + 0] ^= h1 ^ xtime[s0 ^ s1];
state[i + 1] ^= h2 ^ xtime[s1 ^ s2];
state[i + 2] ^= h1 ^ xtime[s2 ^ s3];
state[i + 3] ^= h2 ^ xtime[s3 ^ s0];
}
}
return pub;
};
exports.Encrypt = exports.mcrypt.Encrypt;
exports.Decrypt = exports.mcrypt.Decrypt;