php-src/ext/mcrypt/tests/mcrypt_enc_self_test.phpt

10 lines
238 B
Plaintext
Raw Normal View History

2008-05-17 23:27:42 +00:00
--TEST--
mcrypt_enc_self_test
--SKIPIF--
<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
--FILE--
<?php
$td = mcrypt_module_open(MCRYPT_RIJNDAEL_256, '', MCRYPT_MODE_CBC, '');
var_dump(mcrypt_enc_self_test($td));
--EXPECT--
2008-05-18 19:52:46 +00:00
int(0)