ID: 10890
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: mcrypt related
Operating system: FreeBSD 4.1.1
PHP Version: 4.0.5
Description: Segmentation fault when using mcrypt function in Apache
I tried today with libmcrypt-2.4.11 both with --disable-posix-threads and without.
In both cases i get the segmentation fault in the apache log.
Previous Comments:
---------------------------------------------------------------------------
[2001-05-15 17:48:17] [EMAIL PROTECTED]
If i try to run this script:
<?php
$key = "this is a very secret key";
$input = "Let us meet at 9 o'clock at the secret place.";
$td = mcrypt_module_open (MCRYPT_TripleDES, "", MCRYPT_MODE_ECB, "");
$iv = mcrypt_create_iv (mcrypt_enc_get_iv_size ($td), MCRYPT_RAND);
mcrypt_generic_init ($td, $key, $iv);
$encrypted_data = mcrypt_generic ($td, $input);
mcrypt_generic_end ($td);
echo $encrypted_data;
?>
I get this in my Apache log file:
[Tue May 15 23:30:13 2001] [notice] child pid 22372 exit signal Segmentation fault
(11)
[Tue May 15 23:30:13 2001] [notice] child pid 22371 exit signal Segmentation fault
(11)
I did configure libmcrypt 2.4.9 with:
./configure --disable-posix-threads
And PHP 4.0.5 with:
./configure --with-mysql=/usr/local/mysql --with-gd=/usr/local --with-t1lib --with-ttf
--with-jpeg-dir --with-png-dir --with-tiff-dir --with-zlib-dir --with-xpm-dir
--with-imap --with-gettext --with-zlib --with-pdflib --enable-exif --enable-ftp
--enable-bcmath --with-mcrypt --with-config-file-path=/usr/local/etc
--with-apxs=/usr/local/apache/bin/apxs
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=10890
--
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]