Skip to content

Commit 077eccc

Browse files
committed
eliminate dynamic property
1 parent e38b76f commit 077eccc

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

lib/mcrypt.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,8 @@ function phpseclib_mcrypt_module_open($algorithm, $algorithm_directory, $mode, $
348348

349349
$cipher->disablePadding();
350350

351+
$cipher->key = null;
352+
351353
return $cipher;
352354
}
353355

@@ -688,7 +690,6 @@ function phpseclib_mcrypt_generic_init(Base $td, $key, $iv)
688690
phpseclib_set_iv($td, $iv);
689691

690692
$td->enableContinuousBuffer();
691-
$td->mcrypt_polyfill_init = true;
692693

693694
return 0;
694695
}
@@ -710,7 +711,7 @@ function phpseclib_mcrypt_generic_helper(Base $td, &$data, $op)
710711
// Warning: mcrypt_generic(): supplied resource is not a valid MCrypt resource
711712
// that error doesn't really make a lot of sense in this context since $td is not a resource nor should it be one.
712713
// 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)) {
714715
trigger_error('m' . $op . '_generic(): Operation disallowed prior to mcrypt_generic_init().', E_USER_WARNING);
715716
return false;
716717
}
@@ -786,13 +787,13 @@ function phpseclib_mdecrypt_generic(Base $td, $data)
786787
*/
787788
function phpseclib_mcrypt_generic_deinit(Base $td)
788789
{
789-
if (!isset($td->mcrypt_polyfill_init)) {
790+
if (!isset($td->key)) {
790791
trigger_error('mcrypt_generic_deinit(): Could not terminate encryption specifier', E_USER_WARNING);
791792
return false;
792793
}
793794

794795
$td->disableContinuousBuffer();
795-
unset($td->mcrypt_polyfill_init);
796+
$td->key = null;
796797
return true;
797798
}
798799

@@ -807,7 +808,7 @@ function phpseclib_mcrypt_generic_deinit(Base $td)
807808
*/
808809
function phpseclib_mcrypt_module_close(Base $td)
809810
{
810-
//unset($td->mcrypt_polyfill_init);
811+
$td->key = null;
811812
return true;
812813
}
813814

tests/MCryptCompatTest.php

+8
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,14 @@ public function testOFB()
10091009
}
10101010
}
10111011

1012+
public function testModuleOpenWithoutInit()
1013+
{
1014+
$this->setExpectedException('PHPUnit_Framework_Error_Warning');
1015+
1016+
$td = phpseclib_mcrypt_module_open('rijndael-128', '', 'cbc', '');
1017+
$result = phpseclib_mcrypt_generic($td, 'zzz');
1018+
}
1019+
10121020
public function mcryptModuleNameProvider()
10131021
{
10141022
return array(

0 commit comments

Comments
 (0)