News Feed
Jobs Feed
Sections




News Archive
NETTUTS.com:
Creating a Crypter Class with PHP
September 28, 2009 @ 07:51:19

On the NETTUTS.com site there's a new tutorial posted looking at creating a "crypter" class in PHP - a handy class to make encryption and decryption of data simpler.

Think about what we might need a class like this for? We want to encrypt important data with a password for security reasons. We also want, as already mentioned, to be able to decrypt that data when necessary. Why should you use symmetric algorithms? It's easy; when you're offering a password sent via email or something like that, you need the password to be sent in plaintext. The hash algorithms are not reversible. Once you have hashed a string you can't decipher the original text from the hash.

He lays out his basic class with three methods - the constructor that sets up the key and algorithm and the encrypt and decrypt functions. These use to mcrypt functions to handle the heavy lifting.

0 comments voice your opinion now!
encrypt decrypt tutorial


blog comments powered by Disqus

Similar Posts

NetTuts.com: Simplify Form Handling in a Big Way

DevShed: Using the Observer Design Pattern with Static Data in PHP 5

NetTuts.com: All About Mocking with PHPUnit

PHPMaster.com: A Tour of PHP.INI

ZendCasts.com: Writing Custom Zend Filters with HTMLPurifier


Community Events









Don't see your event here?
Let us know!


release framework community zendframework2 functional composer language interview podcast testing object development introduction api event opinion example unittest code tool

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework