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 trialJonathan Endersby
9,807 PointsFlask Bcrypt Challenge 3.
Not sure what I'm doing wrong here, can someone push me in the right direction.
from flask.ext.bcrypt import generate_password_hash, check_password_hash
def set_password(User, str):
User.password = generate_password_hash('Hello')
return User
def validate_password(User, password):
if check_password_hash(User.password, str)==True:
return True
else:
return False
1 Answer
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points- In set_password, replace 'Hello' with str.
def set_password(User, str):
User.password = generate_password_hash(str)
return User
- In validate_password, compare the user password to the supplied password. Can be done in one line as check_password_hash returns true or false
def validate_password(User, password):
return check_password_hash(User.password, password)