Hi,
I want to encrypt one file using php.Is it possible in php.can u explain how?
Thanks with Regards
Sarbas
Encrypt File
Moderator: General Moderators
Do you want to still be able to use the file -- like obfuscate source code? You should look into php obfuscators for that.
The mcrypt extension works nicely if you can enable it.
http://us2.php.net/mcrypt
If you just want the page to look like a bunch of garbage data, i suppose you could go with base64_encode(), and base64_decode() to get it back into original text.
The mcrypt extension works nicely if you can enable it.
http://us2.php.net/mcrypt
If you just want the page to look like a bunch of garbage data, i suppose you could go with base64_encode(), and base64_decode() to get it back into original text.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
-
thewebdrivers
- Forum Commoner
- Posts: 41
- Joined: Fri Aug 17, 2007 3:32 pm
- Location: india
- Contact:
agree...scottayy wrote:Do you want to still be able to use the file -- like obfuscate source code? You should look into php obfuscators for that.
The mcrypt extension works nicely if you can enable it.
http://us2.php.net/mcrypt
If you just want the page to look like a bunch of garbage data, i suppose you could go with base64_encode(), and base64_decode() to get it back into original text.