Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Build a Social Network with Flask Making Strong Users Cryptographic Hashing with Flask-Bcrypt

what is the salt in the hashing i didnt understand

what is the salt in the hashing

1 Answer

Steven Parker
Steven Parker
229,644 Points

The "salt" adds an additional random factor to defend against dictionary attacks or their hashed equivalent, a pre-computed "rainbow table attack".

Even in the unlikely event that two passwords are the same, the salt ensures that their hashed representations will still be different.