Date: 08/15/01
- Next message: Blake Schwendiman: "RE: [PHP-DEV] Linux Today Article"
- Previous message: sniper <email protected>: "[PHP-DEV] Bug #12757 Updated: utf8_encode doesn't terminate strings with '\0'"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: mneto <email protected>
Operating system: Linux
PHP version: 4.0CVS-2001-08-15
PHP Bug Type: Reproducible crash
Bug description: Segmentation fault (11) : mcrypt
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 bug report at: http://bugs.php.net/?id=12777&edit=1-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Blake Schwendiman: "RE: [PHP-DEV] Linux Today Article"
- Previous message: sniper <email protected>: "[PHP-DEV] Bug #12757 Updated: utf8_encode doesn't terminate strings with '\0'"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

