I am looking at a php Wallet application which uses mcrypt_module_open and passes something like ecb to the mode.
$td = mcrypt_module_open('rijndael-256', '', 'ecb', '');
Is that an hardcode? Where can we find the various applicable modes for this method?