codeofaninja.com
How To Salt, Hash and Store Passwords Securely?
What is password hashing? It turns a string (of any length) to a fixed length “fingerprint” that cannot be reversed. For example, my password is “i1love2coding3″, when hashed, it can be converted to a 60 character “ytwqwxpbx1oxbfvmpoaafckmat2zkdsjaxs…” which will be stored to the database. RELATED: PHP Login Script with Session Tutorial – Step by Step […]
Mike Dalisay