[PHP-WIN] Decryption

2005-11-23 Thread kumar kumar
Hi Is this Code will work for Decryption $key = md5($_REQUEST['KEY'}); $fp = fopen($fname,"w"); $getdata = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, fopen("php://input", "r"),MCRYPT_MODE_ECB); while(!feof($getdata)){ $data = fread($getdata, 2048); fwrite($fp,$data); } A

[PHP-WIN] Decryption with AES support

2005-11-19 Thread kumar kumar
Hi Can you know how to decrypt the file with AES algorithm support Example code please WithRegards Praveen __ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com -- PHP Windows Mailing List (http://www.php.

[PHP-WIN] decryption function?

2001-02-06 Thread Doug Brewer
I am working on windows, and want to encrypt cookie information. However, all I can find is MD5() and crypt(), neither of which have a decryption counterpart. Mcrypt would work, but doesn't seem to be available on win(?). I just need to be able to get the info back out. Any suggestions? Doug Br