@@ -348,6 +348,8 @@ function phpseclib_mcrypt_module_open($algorithm, $algorithm_directory, $mode, $
348
348
349
349
$ cipher ->disablePadding ();
350
350
351
+ $ cipher ->key = null ;
352
+
351
353
return $ cipher ;
352
354
}
353
355
@@ -688,7 +690,6 @@ function phpseclib_mcrypt_generic_init(Base $td, $key, $iv)
688
690
phpseclib_set_iv ($ td , $ iv );
689
691
690
692
$ td ->enableContinuousBuffer ();
691
- $ td ->mcrypt_polyfill_init = true ;
692
693
693
694
return 0 ;
694
695
}
@@ -710,7 +711,7 @@ function phpseclib_mcrypt_generic_helper(Base $td, &$data, $op)
710
711
// Warning: mcrypt_generic(): supplied resource is not a valid MCrypt resource
711
712
// that error doesn't really make a lot of sense in this context since $td is not a resource nor should it be one.
712
713
// in light of that we'll just display the same error that you get when you don't call mcrypt_generic_init() at all
713
- if (!isset ($ td ->mcrypt_polyfill_init )) {
714
+ if (!isset ($ td ->key )) {
714
715
trigger_error ('m ' . $ op . '_generic(): Operation disallowed prior to mcrypt_generic_init(). ' , E_USER_WARNING );
715
716
return false ;
716
717
}
@@ -786,13 +787,13 @@ function phpseclib_mdecrypt_generic(Base $td, $data)
786
787
*/
787
788
function phpseclib_mcrypt_generic_deinit (Base $ td )
788
789
{
789
- if (!isset ($ td ->mcrypt_polyfill_init )) {
790
+ if (!isset ($ td ->key )) {
790
791
trigger_error ('mcrypt_generic_deinit(): Could not terminate encryption specifier ' , E_USER_WARNING );
791
792
return false ;
792
793
}
793
794
794
795
$ td ->disableContinuousBuffer ();
795
- unset( $ td ->mcrypt_polyfill_init ) ;
796
+ $ td ->key = null ;
796
797
return true ;
797
798
}
798
799
@@ -807,7 +808,7 @@ function phpseclib_mcrypt_generic_deinit(Base $td)
807
808
*/
808
809
function phpseclib_mcrypt_module_close (Base $ td )
809
810
{
810
- //unset( $td->mcrypt_polyfill_init) ;
811
+ $ td ->key = null ;
811
812
return true ;
812
813
}
813
814
0 commit comments