php-src/ext/mcrypt/tests/bug35496.phpt
Michael Wallner c535fc7a32 - unicode upgrade
- fix typo: ENIGNA->ENIGMA
- add and fix tests
2006-11-15 22:51:45 +00:00

15 lines
524 B
PHP

--TEST--
Bug #35496 (Crash in mcrypt_generic()/mdecrypt_generic() without proper init).
--SKIPIF--
<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
--FILE--
<?php
$td = mcrypt_module_open('rijndael-256', '', 'ofb', '');
mcrypt_generic($td, b"foobar");
mdecrypt_generic($td, b"baz");
?>
--EXPECTF--
Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in %s/bug35496.php on line 3
Warning: mdecrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in %s/bug35496.php on line 4