SO 1-final
[specialops1.git] / encryption.inc.php
blob53a03f6a914f112efcc2c187482c205e708b022d
1 <?php
2 // do nothing
3 function encrypt($input, $key)
5 //return mcrypt_encrypt(MCRYPT_BLOWFISH, $key, trim($input), MCRYPT_STREAM);
6 return $input;
9 function decrypt($input, $key)
11 //return trim(mcrypt_decrypt(MCRYPT_BLOWFISH, $key, $input, MCRYPT_STREAM));
12 return $input;