I have a problem trying to figure out how to decrypt encrypted information. I have a php page that encrypts information, the only problem is that I cannot create a php to decrypt the information. Can anyone help me with this, here is the simplified encryption code that i am using. <?php $key = "123"; $input = "Let us meet at 9 o'clock at the secret place."; $td = mcrypt_module_open('tripledes', '', 'ecb', ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND); mcrypt_generic_init($td, $key, $iv); $encrypted_data = mcrypt_generic($td, $input); mcrypt_generic_deinit($td); mcrypt_module_close($td); echo("$td <br> $iv") ?>