AES Encryption without Mcrypt library |
The Encryption library is like a Swiss knife and it needs some boilerplate code for achieving the desired encryption algorithm. This may be not convenient for all, there are details to be understood. I also think, its default algorithm choice could be AES 256 CBC for good.
What I did is a compatible implementation in PHP from a JavaScript project called "Gibberish AES" https://github.com/mdp/gibberish-aes This is where this funny name comes from, but the work is serious. |
Messages In This Thread |
AES Encryption without Mcrypt library - by array81 - 10-30-2014, 07:32 AM
RE: AES Encryption without Mcrypt library - by Hobbes - 10-30-2014, 11:05 AM
RE: AES Encryption without Mcrypt library - by ivantcholakov - 10-30-2014, 08:21 PM
RE: AES Encryption without Mcrypt library - by Narf - 10-31-2014, 11:43 AM
RE: AES Encryption without Mcrypt library - by ivantcholakov - 10-31-2014, 06:22 PM
RE: AES Encryption without Mcrypt library - by Narf - 11-01-2014, 08:15 AM
|