I\'ve been reading about the Gawker incident and several articles have cropped up regarding only using bcrypt to hash passwords and I want to make sure my hashing mechanism is s
Comment (re: the title):
opinions on using PBKDF2 vs Bcrypt and whether or not I should implement a change?
My opinion:
Use PBKDF2 over Bcrypt. (I just have more faith in SHA than Blofish, for no reason)
As for whether you should 'implement a change', I don't know what you are asking.
Edited to more clearly separate the encryption / hashing discussion from stating my preferences w/r/t algorithm.