Recommend this page to a friend! |
All requests | > | What is the best PHP encrypt decrypt ... | > | Request new recommendation | > | Featured requests | > | No recommendations |
by Sridhar Thirumalai Ananthanpillai - 8 years ago (2015-12-28)
+5 | Kindly suggest me a very high secure encryption and decryption class that will fullfil my high level security requirement. |
1. by Matthias Kaschubowski - 7 years ago (2016-10-19) Reply
What do you want to encrypt and why ?
+5 | by Mega sploder 160 - 7 years ago (2016-11-27) Comment This class can encrypt and decrypt a string with a given key. |
+3 | by bastian lauterborn 80 - 8 years ago (2016-07-31) Comment simple you can also do just so.. if(isset($_REQUEST['encode'])){exit(base64_encode($_REQUEST['encode']));} if(isset($_REQUEST['decode'])){exit(base64_decode($_REQUEST['decode']));} file.php?encode=hello world... |
+3 | by Dave Smith 6845 - 8 years ago (2016-01-03) Comment This package has 2 unique properties. First it generates a self decrypting file from the original and second it provides a way to supply a secret keyword so that if someone takes the code, they can't read or implement it without knowing the secret. As mentioned, nothing is super secure in pure php. To get super secure, you will need to get an encoder like sourceGuardian, Nusphere's NuCoder, Zend's zendGaurd, etc... The advantage to these encoders is that your code will actually run faster. Dave |
+3 | by Manuel Lemos 23985 - 8 years ago (2016-01-01) Comment I think encryption is not really a good idea for pure PHP solutions because decryption takes time and delays the execution of your code and they really do not prevent people to steal your code. Anyway, this class creates obfuscated versions of your code making them harder to read and understand. If you really want to go further you can create phar archives from your classes. Phar archives can also be easily decoded but many people without much people knowledge do not know how to do it. |
Recommend package | |
|