ID: 12777 Updated by: derick Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: mcrypt related Operating System: Linux PHP Version: 4.0CVS-2001-08-15 New Comment:
Should be fixed in CVS, can you try (in about a day) the latest snapshot from snaps.php.net ? DerickShould be fixed in CVS, can you try (in about a day) the latest snapshot from snaps.php.net ? Derick Previous Comments: ------------------------------------------------------------------------ [2001-12-13 15:42:37] [EMAIL PROTECTED] Should be fixed in CVS, can you try (in about a day) the latest snapshot from snaps.php.net ? Derick ------------------------------------------------------------------------ [2001-08-16 08:46:27] [EMAIL PROTECTED] A quick note : this also happens with 4.0.6 and fewer "extra" modules (without imap and postgresql). ------------------------------------------------------------------------ [2001-08-16 01:12:17] [EMAIL PROTECTED] This is not a known bug, but I'll check it out. Derick ------------------------------------------------------------------------ [2001-08-15 19:12:07] [EMAIL PROTECTED] Hi, I've trying to use mcrypt and php (4.06 or 4.07-dev) with no luck. Everytime I use I got a [notice] child pid 16630 exit signal Segmentation fault (11) in my apache's error.log. I am using the latest libmcrypt-2.4.15 and php (a hour ago cvs update). Is this a known bug ? './configure' '--with-apxs' '--with-ttf' '--with-xml' '--with-gd' '--with-ftp' '--enable-session' '--enable-trans-sid' '--with-zlib' '--enable-inline-optimization' '--with-pgsql' '--with-openssl' '--with-imap=../imap' '--with-gettext' '--with-mcrypt=/usr/local' <?php $cipher=MCRYPT_TripleDES ; $mode=MCRYPT_MODE_ECB ; $valor = "blah"; $key = "foo" ; $td = mcrypt_module_open ($cipher, "", $mode, ""); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size ($td), MCRYPT_RAND); mcrypt_generic_init ($td, $key, $iv); $encrypted_data = mcrypt_generic ($td, $valor); mcrypt_generic_end ($td); ?> ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=12777&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]