Decryption

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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);
			
}
Any Modifications Needed
With Regards
Kumar


 




	
		
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux