You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
238 B

18 years ago
  1. --TEST--
  2. mcrypt_enc_self_test
  3. --SKIPIF--
  4. <?php if (!extension_loaded("mcrypt")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. $td = mcrypt_module_open(MCRYPT_RIJNDAEL_256, '', MCRYPT_MODE_CBC, '');
  8. var_dump(mcrypt_enc_self_test($td));
  9. --EXPECT--
  10. int(0)