-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
mcrypt.php
1595 lines (1471 loc) · 49.6 KB
/
mcrypt.php
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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* mcrypt polyfill
*
* PHP 7.1 removed the mcrypt extension. This provides a compatibility layer for legacy applications.
*
* PHP versions 5 and 7
*
* LICENSE: Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
use phpseclib\Crypt\Rijndael;
use phpseclib\Crypt\Twofish;
use phpseclib\Crypt\Blowfish;
use phpseclib\Crypt\TripleDES;
use phpseclib\Crypt\DES;
use phpseclib\Crypt\RC2;
use phpseclib\Crypt\RC4;
use phpseclib\Crypt\Random;
use phpseclib\Crypt\Base;
if (!defined('MCRYPT_MODE_ECB')) {
/**#@+
* mcrypt constants
*
* @access public
*/
// http://php.net/manual/en/mcrypt.constants.php
define('MCRYPT_MODE_ECB', 'ecb');
define('MCRYPT_MODE_CBC', 'cbc');
define('MCRYPT_MODE_CFB', 'cfb');
define('MCRYPT_MODE_OFB', 'ofb');
define('MCRYPT_MODE_NOFB', 'nofb');
define('MCRYPT_MODE_STREAM', 'stream');
define('MCRYPT_ENCRYPT', 0);
define('MCRYPT_DECRYPT', 1);
define('MCRYPT_DEV_RANDOM', 0);
define('MCRYPT_DEV_URANDOM', 1);
define('MCRYPT_RAND', 2);
// http://php.net/manual/en/mcrypt.ciphers.php
define('MCRYPT_3DES', 'tripledes');
define('MCRYPT_ARCFOUR_IV', 'arcfour-iv');
define('MCRYPT_ARCFOUR', 'arcfour');
define('MCRYPT_BLOWFISH', 'blowfish');
define('MCRYPT_CAST_128', 'cast-128');
define('MCRYPT_CAST_256', 'cast-256');
define('MCRYPT_CRYPT', 'crypt');
define('MCRYPT_DES', 'des');
// MCRYPT_DES_COMPAT?
// MCRYPT_ENIGMA?
define('MCRYPT_GOST', 'gost');
define('MCRYPT_IDEA', 'idea');
define('MCRYPT_LOKI97', 'loki97');
define('MCRYPT_MARS', 'mars');
define('MCRYPT_PANAMA', 'panama');
define('MCRYPT_RIJNDAEL_128', 'rijndael-128');
define('MCRYPT_RIJNDAEL_192', 'rijndael-192');
define('MCRYPT_RIJNDAEL_256', 'rijndael-256');
define('MCRYPT_RC2', 'rc2');
// MCRYPT_RC4?
define('MCRYPT_RC6', 'rc6');
// MCRYPT_RC6_128
// MCRYPT_RC6_192
// MCRYPT_RC6_256
define('MCRYPT_SAFER64', 'safer-sk64');
define('MCRYPT_SAFER128', 'safer-sk128');
define('MCRYPT_SAFERPLUS', 'saferplus');
define('MCRYPT_SERPENT', 'serpent');
// MCRYPT_SERPENT_128?
// MCRYPT_SERPENT_192?
// MCRYPT_SERPENT_256?
define('MCRYPT_SKIPJACK', 'skipjack');
// MCRYPT_TEAN?
define('MCRYPT_THREEWAY', 'threeway');
define('MCRYPT_TRIPLEDES', 'tripledes');
define('MCRYPT_TWOFISH', 'twofish');
// MCRYPT_TWOFISH128?
// MCRYPT_TWOFISH192?
// MCRYPT_TWOFISH256?
define('MCRYPT_WAKE', 'wake');
define('MCRYPT_XTEA', 'xtea');
/**#@-*/
}
if (!function_exists('phpseclib_mcrypt_list_algorithms')) {
/**
* Find whether the type of a variable is string (or could be converted to one)
*
* @param mixed $var
* @return bool
*/
function phpseclib_is_stringable($var)
{
return is_string($var) || (is_object($var) && method_exists($var, '__toString'));
}
/**
* Returns the string length
*
* PHP8.1 emits a warning if $string isn't a string
*
* @param string $string
* @return int
* @access private
*/
function phpseclib_strlen($string)
{
return phpseclib_is_stringable($string) ? strlen($string) : 0;
}
/**
* Sets the key
*
* @param Base $td
* @param string $key
* @access private
*/
function phpseclib_set_key(Base $td, $key)
{
$length = $origLength = strlen($key);
$reflection = new \ReflectionClass($td);
switch ($reflection->getShortName()) {
case 'TripleDES':
$length = 24;
break;
case 'DES':
$length = 8;
break;
case 'Twofish':
case 'Rijndael':
switch (true) {
case $length <= 16:
$length = 16;
break;
case $length <= 24:
$length = 24;
break;
default:
$length = 32;
}
break;
case 'Blowfish':
switch (true) {
case $length <= 3:
while (strlen($key) <= 5) {
$key.= $key;
}
$key = substr($key, 0, 6);
$td->setKey($key);
return;
case $length > 56:
$length = 56;
}
break;
case 'RC2':
if ($length > 128) {
$length = 128;
}
break;
case 'RC4':
if ($length > 256) {
$length = 256;
}
}
if ($length != $origLength) {
$key = str_pad(substr($key, 0, $length), $length, "\0");
}
$td->setKey($key);
}
/**
* Sets the IV
*
* @param Base $td
* @param string $iv
* @access private
*/
function phpseclib_set_iv(Base $td, $iv)
{
if ($td->mode != Base::MODE_ECB && $td->mode != Base::MODE_STREAM) {
$length = $td->getBlockLength() >> 3;
$iv = str_pad(substr(phpseclib_is_stringable($iv) ? $iv : '', 0, $length), $length, "\0");
$td->setIV($iv);
}
}
/**
* Gets an array of all supported ciphers.
*
* @param string $lib_dir optional
* @return array
* @access public
*/
function phpseclib_mcrypt_list_algorithms($lib_dir = '')
{
return array(
'rijndael-128',
'twofish',
'rijndael-192',
'blowfish-compat',
'des',
'rijndael-256',
'blowfish',
'rc2',
'tripledes',
'arcfour'
);
}
/**
* Gets an array of all supported modes
*
* @param string $lib_dir optional
* @return array
* @access public
*/
function phpseclib_mcrypt_list_modes($lib_dir = '')
{
return array(
'cbc',
'cfb',
'ctr',
'ecb',
'ncfb',
'nofb',
'ofb',
'stream'
);
}
/**
* Creates an initialization vector (IV) from a random source
*
* The IV is only meant to give an alternative seed to the encryption routines. This IV does not need
* to be secret at all, though it can be desirable. You even can send it along with your ciphertext
* without losing security.
*
* @param int $size
* @param int $source optional
* @return string
* @access public
*/
function phpseclib_mcrypt_create_iv($size, $source = MCRYPT_DEV_URANDOM)
{
if ($size < 1 || $size > 0x7FFFFFFF) {
trigger_error('mcrypt_create_iv(): Cannot create an IV with a size of less than 1 or greater than 2147483647', E_USER_WARNING);
return '';
}
return Random::string($size);
}
/**
* Opens the module of the algorithm and the mode to be used
*
* This function opens the module of the algorithm and the mode to be used. The name of the algorithm
* is specified in algorithm, e.g. "twofish" or is one of the MCRYPT_ciphername constants. The module
* is closed by calling mcrypt_module_close().
*
* @param string $algorithm
* @param string $algorithm_directory
* @param string $mode
* @param string $mode_directory
* @return object
* @access public
*/
function phpseclib_mcrypt_module_open($algorithm, $algorithm_directory, $mode, $mode_directory)
{
$modeMap = array(
'ctr' => Base::MODE_CTR,
'ecb' => Base::MODE_ECB,
'cbc' => Base::MODE_CBC,
'cfb' => Base::MODE_CFB8,
'ofb' => Base::MODE_OFB8,
'ncfb'=> Base::MODE_CFB,
'nofb'=> Base::MODE_OFB,
'stream' => Base::MODE_STREAM
);
switch (true) {
case !isset($modeMap[$mode]):
case $mode == 'stream' && $algorithm != 'arcfour':
case $algorithm == 'arcfour' && $mode != 'stream':
trigger_error('mcrypt_module_open(): Could not open encryption module', E_USER_WARNING);
return false;
}
switch ($algorithm) {
case 'rijndael-128':
$cipher = new Rijndael($modeMap[$mode]);
$cipher->setBlockLength(128);
break;
case 'twofish':
$cipher = new Twofish($modeMap[$mode]);
break;
case 'rijndael-192':
$cipher = new Rijndael($modeMap[$mode]);
$cipher->setBlockLength(192);
break;
case 'des':
$cipher = new DES($modeMap[$mode]);
break;
case 'rijndael-256':
$cipher = new Rijndael($modeMap[$mode]);
$cipher->setBlockLength(256);
break;
case 'blowfish':
$cipher = new Blowfish($modeMap[$mode]);
break;
case 'rc2':
$cipher = new RC2($modeMap[$mode]);
break;
case'tripledes':
$cipher = new TripleDES($modeMap[$mode]);
break;
case 'arcfour':
$cipher = new RC4();
break;
default:
trigger_error('mcrypt_module_open(): Could not open encryption module', E_USER_WARNING);
return false;
}
$cipher->disablePadding();
$cipher->key = null;
return $cipher;
}
/**
* Returns the maximum supported keysize of the opened mode
*
* Gets the maximum supported key size of the algorithm in bytes.
*
* @param Base $td
* @return int
* @access public
*/
function phpseclib_mcrypt_enc_get_key_size(Base $td)
{
// invalid parameters with mcrypt result in warning's. type hinting, as this function is doing,
// produces a catchable fatal error.
$reflection = new \ReflectionClass($td);
switch ($reflection->getShortName()) {
case 'Rijndael':
case 'Twofish':
return 32;
case 'DES':
return 8;
case 'TripleDES':
return 24;
case 'RC4':
return 256;
case 'Blowfish':
return 56;
case 'RC2':
return 128;
}
}
/**
* Gets the name of the specified cipher
*
* @param string $cipher
* @return mixed
* @access public
*/
function phpseclib_mcrypt_get_cipher_name($cipher)
{
switch ($cipher) {
case 'rijndael-128':
return 'Rijndael-128';
case 'twofish':
return 'Twofish';
case 'rijndael-192':
return 'Rijndael-192';
case 'des':
return 'DES';
case 'rijndael-256':
return 'Rijndael-256';
case 'blowfish':
return 'Blowfish';
case 'rc2':
return 'RC2';
case 'tripledes':
return '3DES';
case 'arcfour':
return 'RC4';
default:
return false;
}
}
/**
* Gets the block size of the specified cipher
*
* @param string $cipher
* @param string $mode optional
* @return int
* @access public
*/
function phpseclib_mcrypt_get_block_size($cipher, $mode = false)
{
if (!$mode) {
$mode = $cipher == 'rc4' ? 'stream' : 'cbc';
}
$td = @phpseclib_mcrypt_module_open($cipher, '', $mode, '');
if ($td === false) {
trigger_error('mcrypt_get_block_size(): Module initialization failed', E_USER_WARNING);
return false;
}
return phpseclib_mcrypt_enc_get_block_size($td);
}
/**
* Gets the key size of the specified cipher
*
* @param string $cipher
* @param string $mode optional
* @return int
* @access public
*/
function phpseclib_mcrypt_get_key_size($cipher, $mode = false)
{
if (!$mode) {
$mode = $cipher == 'rc4' ? 'stream' : 'cbc';
}
$td = @phpseclib_mcrypt_module_open($cipher, '', $mode, '');
if ($td === false) {
trigger_error('mcrypt_get_key_size(): Module initialization failed', E_USER_WARNING);
return false;
}
return phpseclib_mcrypt_enc_get_key_size($td);
}
/**
* Returns the size of the IV belonging to a specific cipher/mode combination
*
* @param string $cipher
* @param string $mode
* @return int
* @access public
*/
function phpseclib_mcrypt_get_iv_size($cipher, $mode)
{
$td = @phpseclib_mcrypt_module_open($cipher, '', $mode, '');
if ($td === false) {
trigger_error('mcrypt_get_iv_size(): Module initialization failed', E_USER_WARNING);
return false;
}
return phpseclib_mcrypt_enc_get_iv_size($td);
}
/**
* Returns the maximum supported keysize of the opened mode
*
* Gets the maximum supported keysize of the opened mode.
*
* @param string $algorithm
* @param string $lib_dir
* @return int
* @access public
*/
function phpseclib_mcrypt_module_get_algo_key_size($algorithm, $lib_dir = '')
{
$mode = $algorithm == 'rc4' ? 'stream' : 'cbc';
$td = @phpseclib_mcrypt_module_open($algorithm, '', $mode, '');
if ($td === false) {
trigger_error('mcrypt_module_get_algo_key_size(): Module initialization failed', E_USER_WARNING);
return false;
}
return phpseclib_mcrypt_enc_get_key_size($td);
}
/**
* Returns the size of the IV of the opened algorithm
*
* This function returns the size of the IV of the algorithm specified by the encryption
* descriptor in bytes. An IV is used in cbc, cfb and ofb modes, and in some algorithms
* in stream mode.
*
* @param Base $td
* @return int
* @access public
*/
function phpseclib_mcrypt_enc_get_iv_size(Base $td)
{
return $td->getBlockLength() >> 3;
}
/**
* Returns the blocksize of the opened algorithm
*
* Gets the blocksize of the opened algorithm.
*
* @param Base $td
* @return int
* @access public
*/
function phpseclib_mcrypt_enc_get_block_size(Base $td)
{
return $td->getBlockLength() >> 3;
}
/**
* Returns the blocksize of the specified algorithm
*
* Gets the blocksize of the specified algorithm.
*
* @param string $algorithm
* @param string $lib_dir
* @return int
* @access public
*/
function phpseclib_mcrypt_module_get_algo_block_size($algorithm, $lib_dir = '')
{
// cbc isn't a valid mode for rc4 but that's ok: -1 will still be returned
$td = @phpseclib_mcrypt_module_open($algorithm, '', 'cbc', '');
if ($td === false) {
return -1;
}
return $td->getBlockLength() >> 3;
}
/**
* Returns the name of the opened algorithm
*
* This function returns the name of the algorithm.
*
* @param Base $td
* @return string|bool
* @access public
*/
function phpseclib_mcrypt_enc_get_algorithms_name(Base $td)
{
$reflection = new \ReflectionObject($td);
switch ($reflection->getShortName()) {
case 'Rijndael':
return 'RIJNDAEL-' . $td->getBlockLength();
case 'Twofish':
return 'TWOFISH';
case 'Blowfish':
return 'BLOWFISH'; // what about BLOWFISH-COMPAT?
case 'DES':
return 'DES';
case 'RC2':
return 'RC2';
case 'TripleDES':
return 'TRIPLEDES';
case 'RC4':
return 'ARCFOUR';
}
return false;
}
/**
* Returns the name of the opened mode
*
* This function returns the name of the mode.
*
* @param Base $td
* @return string|bool
* @access public
*/
function phpseclib_mcrypt_enc_get_modes_name(Base $td)
{
$modeMap = array(
Base::MODE_CTR => 'CTR',
Base::MODE_ECB => 'ECB',
Base::MODE_CBC => 'CBC',
Base::MODE_CFB => 'nCFB',
Base::MODE_OFB => 'nOFB',
Base::MODE_CFB8 => 'CFB',
Base::MODE_OFB8 => 'OFB',
Base::MODE_STREAM => 'STREAM'
);
return isset($modeMap[$td->mode]) ? $modeMap[$td->mode] : false;
}
/**
* Checks whether the encryption of the opened mode works on blocks
*
* Tells whether the algorithm of the opened mode works on blocks (e.g. FALSE for stream, and TRUE for cbc, cfb, ofb)..
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_enc_is_block_algorithm_mode(Base $td)
{
return $td->mode != Base::MODE_STREAM;
}
/**
* Checks whether the algorithm of the opened mode is a block algorithm
*
* Tells whether the algorithm of the opened mode is a block algorithm.
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_enc_is_block_algorithm(Base $td)
{
return phpseclib_mcrypt_enc_get_algorithms_name($td) != 'ARCFOUR';
}
/**
* Checks whether the opened mode outputs blocks
*
* Tells whether the opened mode outputs blocks (e.g. TRUE for cbc and ecb, and FALSE for cfb and stream).
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_enc_is_block_mode(Base $td)
{
return $td->mode == Base::MODE_ECB || $td->mode == Base::MODE_CBC;
}
/**
* Runs a self test on the opened module
*
* This function runs the self test on the algorithm specified by the descriptor td.
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_enc_self_test(Base $td)
{
return true;
}
/**
* This function initializes all buffers needed for en/decryption.
*
* @param Base $td
* @param string $key
* @param string $iv
* @return int
* @access public
*/
function phpseclib_mcrypt_generic_init(Base $td, $key, $iv)
{
$iv_size = phpseclib_mcrypt_enc_get_iv_size($td);
if (phpseclib_strlen($iv) != $iv_size && $td->mode != Base::MODE_ECB) {
trigger_error('mcrypt_generic_init(): Iv size incorrect; supplied length: ' . phpseclib_strlen($iv) . ', needed: ' . $iv_size, E_USER_WARNING);
}
if (!phpseclib_strlen($key)) {
trigger_error('mcrypt_generic_init(): Key size is 0', E_USER_WARNING);
return -3;
}
$max_key_size = phpseclib_mcrypt_enc_get_key_size($td);
if (strlen($key) > $max_key_size) {
trigger_error('mcrypt_generic_init(): Key size too large; supplied length: ' . strlen($key) . ', max: ' . $max_key_size, E_USER_WARNING);
}
phpseclib_set_key($td, $key);
phpseclib_set_iv($td, $iv);
$td->enableContinuousBuffer();
return 0;
}
/**
* Encrypt / decrypt data
*
* Performs checks common to both mcrypt_generic and mdecrypt_generic
*
* @param Base $td
* @param string $data
* @param string $op
* @return string|bool
* @access private
*/
function phpseclib_mcrypt_generic_helper(Base $td, &$data, $op)
{
// in the orig mcrypt, if mcrypt_generic_init() was called and an empty key was provided you'd get the following error:
// Warning: mcrypt_generic(): supplied resource is not a valid MCrypt resource
// that error doesn't really make a lot of sense in this context since $td is not a resource nor should it be one.
// in light of that we'll just display the same error that you get when you don't call mcrypt_generic_init() at all
if (!isset($td->key)) {
trigger_error('m' . $op . '_generic(): Operation disallowed prior to mcrypt_generic_init().', E_USER_WARNING);
return false;
}
// phpseclib does not currently provide a way to retrieve the mode once it has been set via "public" methods
if (phpseclib_mcrypt_enc_is_block_mode($td)) {
$block_length = phpseclib_mcrypt_enc_get_iv_size($td);
$extra = strlen($data) % $block_length;
if ($extra) {
$data.= str_repeat("\0", $block_length - $extra);
}
}
return $op == 'crypt' ? $td->encrypt($data) : $td->decrypt($data);
}
/**
* This function encrypts data
*
* This function encrypts data. The data is padded with "\0" to make sure the length of the data
* is n * blocksize. This function returns the encrypted data. Note that the length of the
* returned string can in fact be longer than the input, due to the padding of the data.
*
* If you want to store the encrypted data in a database make sure to store the entire string as
* returned by mcrypt_generic, or the string will not entirely decrypt properly. If your original
* string is 10 characters long and the block size is 8 (use mcrypt_enc_get_block_size() to
* determine the blocksize), you would need at least 16 characters in your database field. Note
* the string returned by mdecrypt_generic() will be 16 characters as well...use rtrim($str, "\0")
* to remove the padding.
*
* If you are for example storing the data in a MySQL database remember that varchar fields
* automatically have trailing spaces removed during insertion. As encrypted data can end in a
* space (ASCII 32), the data will be damaged by this removal. Store data in a tinyblob/tinytext
* (or larger) field instead.
*
* @param Base $td
* @param string $data
* @return string|bool
* @access public
*/
function phpseclib_mcrypt_generic(Base $td, $data)
{
return phpseclib_mcrypt_generic_helper($td, $data, 'crypt');
}
/**
* Decrypts data
*
* This function decrypts data. Note that the length of the returned string can in fact be
* longer than the unencrypted string, due to the padding of the data.
*
* @param Base $td
* @param string $data
* @return string|bool
* @access public
*/
function phpseclib_mdecrypt_generic(Base $td, $data)
{
return phpseclib_mcrypt_generic_helper($td, $data, 'decrypt');
}
/**
* This function terminates encryption
*
* Alias of mcrypt_generic_deinit()
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_generic_end(Base $td)
{
// https://web.archive.org/web/20180106174656/https://www.php.net/manual/en/function.mcrypt-generic-end.php
return phpseclib_mcrypt_generic_deinit($td);
}
/**
* This function deinitializes an encryption module
*
* This function terminates encryption specified by the encryption descriptor (td).
* It clears all buffers, but does not close the module. You need to call
* mcrypt_module_close() yourself. (But PHP does this for you at the end of the
* script.)
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_generic_deinit(Base $td)
{
if (!isset($td->key)) {
trigger_error('mcrypt_generic_deinit(): Could not terminate encryption specifier', E_USER_WARNING);
return false;
}
$td->disableContinuousBuffer();
$td->key = null;
return true;
}
/**
* Closes the mcrypt module
*
* Closes the specified encryption handle.
*
* @param Base $td
* @return bool
* @access public
*/
function phpseclib_mcrypt_module_close(Base $td)
{
$td->key = null;
return true;
}
/**
* Returns an array with the supported keysizes of the opened algorithm
*
* Returns an array with the key sizes supported by the specified algorithm.
* If it returns an empty array then all key sizes between 1 and mcrypt_module_get_algo_key_size()
* are supported by the algorithm.
*
* @param string $algorithm
* @param string $lib_dir optional
* @return array
* @access public
*/
function phpseclib_mcrypt_module_get_supported_key_sizes($algorithm, $lib_dir = '')
{
switch ($algorithm) {
case 'rijndael-128':
case 'rijndael-192':
case 'rijndael-256':
case 'twofish':
return array(16, 24, 32);
case 'des':
return array(8);
case 'tripledes':
return array(24);
//case 'arcfour':
//case 'blowfish':
//case 'rc2':
default:
return array();
}
}
/**
* Returns an array with the supported keysizes of the opened algorithm
*
* Gets the supported key sizes of the opened algorithm.
*
* @param Base $td
* @return array
* @access public
*/
function phpseclib_mcrypt_enc_get_supported_key_sizes(Base $td)
{
$algorithm = strtolower(phpseclib_mcrypt_enc_get_algorithms_name($td));
return phpseclib_mcrypt_module_get_supported_key_sizes($algorithm);
}
/**
* Returns if the specified module is a block algorithm or not
*
* This function returns TRUE if the mode is for use with block algorithms, otherwise it returns FALSE. (e.g. FALSE for stream, and TRUE for cbc, cfb, ofb).
*
* @param string $mode
* @param string $lib_dir optional
* @return bool
* @access public
*/
function phpseclib_mcrypt_module_is_block_algorithm_mode($mode, $lib_dir = '')
{
switch ($mode) {
case 'cbc':
case 'ctr':
case 'ecb':
case 'cfb':
case 'ofb':
case 'ncfb':
case 'nofb':
return true;
}
return false;
}
/**
* This function checks whether the specified algorithm is a block algorithm
*
* This function returns TRUE if the specified algorithm is a block algorithm, or FALSE if it is a stream one.
*
* @param string $mode
* @param string $lib_dir optional
* @return bool
* @access public
*/
function phpseclib_mcrypt_module_is_block_algorithm($algorithm, $lib_dir = '')
{
switch ($algorithm) {
case 'rijndael-128':
case 'twofish':
case 'rijndael-192':
case 'des':
case 'rijndael-256':
case 'blowfish':
case 'rc2':
case 'tripledes':
return true;
}
return false;
}
/**
* Returns if the specified mode outputs blocks or not
*
* This function returns TRUE if the mode outputs blocks of bytes or FALSE if it outputs just bytes. (e.g. TRUE for cbc and ecb, and FALSE for cfb and stream).
*
* @param string $mode
* @param string $lib_dir optional
* @return bool
* @access public
*/
function phpseclib_mcrypt_module_is_block_mode($mode, $lib_dir = '')
{
switch ($mode) {
case 'cbc':
case 'ecb':
return true;
}
return false;
}
/**
* Returns if the specified mode can use an IV or not
*
* @param string $mode
* @return bool
* @access private
*/
function phpseclib_mcrypt_module_is_iv_mode($mode)
{
switch ($mode) {
case 'ecb':
case 'stream':
return false;
}
return true;
}
/**
* This function runs a self test on the specified module
*
* This function runs the self test on the algorithm specified.
*
* @param string $mode
* @param string $lib_dir optional
* @return bool
* @access public
*/
function phpseclib_mcrypt_module_self_test($algorithm, $lib_dir = '')
{
return in_array($algorithm, phpseclib_mcrypt_list_algorithms());
}
/**
* Encrypt / decrypt data using pre PHP 5.6.0 behavior
*
* Performs checks common to both mcrypt_encrypt and mcrypt_decrypt
*
* @param string $cipher
* @param string $key
* @param string $data
* @param string $mode
* @param string $iv
* @param string $op
* @return string|bool
* @access private
*/
function phpseclib_mcrypt_helper_old($cipher, $key, $data, $mode, $iv, $op)
{
$td = @phpseclib_mcrypt_module_open($cipher, '', $mode, '');
phpseclib_set_key($td, $key);
$iv_size = phpseclib_mcrypt_enc_get_iv_size($td);