Archives for the ‘encryption’ Category
By admin • May 13th, 2008 • Category: encryption, php
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Php Serpent class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/Serpent.inc
By admin • May 13th, 2008 • Category: encryption, php
Php aes [ Rijndael ] class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/Rijndael.inc
By admin • May 13th, 2008 • Category: encryption, php
Php twofish class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/TwoFish.inc
By admin • May 13th, 2008 • Category: encryption, php
Php blowfish class using mcrypt. requires two md5 keys for encryption
You can download from:
http://gregsidberry.com/wp-content/uploads/2008/05/BlowFish.inc
By admin • May 4th, 2008 • Category: encryption, php, windows
To use mcrypt function in php on windows you’ll need the libmcrypt.dll file. Install to windows/system32 and make sure your loading the mcrypt extension in php.ini
Index of /php/win32/mcrypt
By admin • May 4th, 2008 • Category: encryption
So after a night of coding I decided to play with different ciphers to see which ones ran faster, because it pointless to focus on just security, ya want speed to right!
One layer encryption:
The following where the fastest three I in my tests. Blowfish shouldn’t be used as your primary encryption, and aes is […]
By admin • May 4th, 2008 • Category: encryption, rants
So last night I decided it would be pretty cool and take the information access process from the DOD and figure out how you could apply them to a php application.
After a few hours spec’ing out the system i got to coding. I now have a quick and easy class I call Cryption. Its built […]