|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesenigma (last revision 2013-07-02 21:11 UTC by pacodumas2010 at yahoo dot es)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-09-19 14:48 UTC] jani@php.net
[2009-09-27 01:00 UTC] php-bugs at lists dot php dot net
[2011-11-07 19:20 UTC] vseticka dot martin at gmail dot com
[2015-05-15 19:46 UTC] dewi at dewimorgan dot com
[2015-05-15 20:38 UTC] dewi at dewimorgan dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 07:00:01 2025 UTC |
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