http://php.net/manual/en/function.mcrypt-module-open.php
<?php
$td = mcrypt_module_open(MCRYPT_DES, '',
MCRYPT_MODE_ECB, '/usr/lib/mcrypt-modes');
$td = mcrypt_module_open('rijndael-256', '', 'ofb', '');
?>
In the documentation, it is described as an “encryption descriptor” in mcrypt_enc_get_iv_size()‘s page, but that’s as far as I got.
It’s bugging me that it isn’t $ed 🙁
“Twofish Descriptor”?
Description
Return Values