Edit report at https://bugs.php.net/bug.php?id=49311&edit=1

 ID:                 49311
 Comment by:         vseticka dot martin at gmail dot com
 Reported by:        c58999 at tyldd dot com
 Summary:            WAKE, enigma and arcfour ciphers fail to initialize
 Status:             No Feedback
 Type:               Bug
 Package:            mcrypt related
 Operating System:   Windows
 PHP Version:        5.3.0
 Block user comment: N
 Private report:     N

 New Comment:

http://stackoverflow.com/questions/8040901/how-to-encrypt-with-mcrypt-arcfour-in-wamp/8041271
 - this question shows that the bug seems to be still present.


Previous Comments:
------------------------------------------------------------------------
[2009-09-27 01:00:02] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------
[2009-09-19 14:48:25] j...@php.net

Please try using this snapshot:

  http://snaps.php.net/php5.3-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/



------------------------------------------------------------------------
[2009-08-20 15:06:57] c58999 at tyldd dot com

Description:
------------
The arcfour algoritm fails to initialize on PHP 5.3.0 win32. This also appears 
to happen with the wake and enigma ciphers. I could also reproduce this 
behaviour on PHP 5.2.6-2ubuntu4.2.

Reproduce code:
---------------
$algs = mcrypt_list_algorithms();

foreach($algs as $alg){
        echo "$alg\n";
        $td = mcrypt_module_open($alg, '', 'ecb', '');
        echo "\n";
}

Expected result:
----------------
I would expect this code to execute without any errors.

Actual result:
--------------
C:\php>php mcrypt.php
cast-128
gost
rijndael-128
twofish
cast-256
loki97
rijndael-192
saferplus
wake
PHP Warning:  mcrypt_module_open(): Could not open encryption module in 
C:\php\mcrypt.php on line 6
blowfish-compat
des
rijndael-256
serpent
xtea
blowfish
enigma
PHP Warning:  mcrypt_module_open(): Could not open encryption module in 
C:\php\mcrypt.php on line 6
rc2
tripledes
arcfour
PHP Warning:  mcrypt_module_open(): Could not open encryption module in 
C:\php\mcrypt.php on line 6


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=49311&edit=1

Reply via email to