ID: 12777
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Assigned
Bug Type: Reproducible crash
Operating System: Linux
PHP Version: 4.0CVS-2001-08-15
Old Assigned To:
Assigned To: derick
New Comment:
This is not a known bug, but I'll check it out.
Derick
Previous Comments:
------------------------------------------------------------------------
[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]