database - Storing password hashes -


in tutorials web app security example databases have character-typed fields hashes. there (security) reasons store password hashes base64-encoded string. why not store binary blob?

no, there no security reasons this, data stored same (just different format). however, there practical reasons: easier compare base64 string in database 1 log file, example. helps debugging.


Comments