News Feed
Jobs Feed
Sections




News Archive
Oscar Merida's Blog:
Using bcrypt to store passwords
June 15, 2012 @ 10:52:41

Oscar Merida has a recent post to his blog about using the bcrypt functionality to more securely store the password information for your application's users.

The linkedin password breach highlighted once again the risks associated with storing user passwords. I hope you are not still storing passwords in the clear and are using a one-way salted hash before storing them. But, the algorithm you choose to use is also important. [...] The choice, at the moment, seems to come down to SHA512 versus Bcrypt encryption.

[...] I wanted to switch one of my personal apps to use bcrypt, which on php means using Blowfish encryption via the crypt() function. There's no shortage of classes and examples for using bcrypts to hash a string. But I didn't find anything that outlined how to setup a database table to store usernames and passwords, salt and store passwords, and then verify a login request.

He shows you how to set up a simple "users" table and the code for a "save_user" method that takes in the username/password and generates a salt and calls crypt on it with the Blowfish prefix on the string ($2a$). His login check function ("validate_user") then takes the user's input, does the same hashing and checks the result.

0 comments voice your opinion now!
bcrypt password store user tutorial blowfish


blog comments powered by Disqus

Similar Posts

ITNewb.com: Introduction to JSON and PHP

Solar Blog: Solar CLI - Getting Started

James Morris' Blog: A Symfony2 Console Command and the Foursquare API Venuehistory

Lorna Mitchell's Blog: Building A RESTful PHP Server: Routing the Request

Zend Developer Zone: Debugging PHP applications with xdebug


Community Events









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


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

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