Archives for the ‘encryption’ Category

php: Serpent encryption class

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


php: aes Rijndael encryption class

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


php: twofish encryption class

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


php: blowfish encryption class

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


Mcrypt windows dll

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


encryption: playing for speed

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 […]


Concept: encryption / sercurity based on the dod concept

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 […]