mirror of
https://github.com/php/php-src.git
synced 2026-04-14 19:41:05 +02:00
11 lines
284 B
PHP
11 lines
284 B
PHP
--TEST--
|
|
Bug #67707 IV not needed for ECB encryption mode, but it returns a warning
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$td = mcrypt_module_open('rijndael-256', '', 'ecb', '');
|
|
mcrypt_generic_init($td, 'secret key', NULL);
|
|
?>
|
|
--EXPECTF--
|