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 Bcryptkeeper

Jonathan Endersby
Jonathan Endersby
9,807 Points

Flask Bcrypt Challenge 3.

Not sure what I'm doing wrong here, can someone push me in the right direction.

utils.py
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
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points
  1. In set_password, replace 'Hello' with str.
def set_password(User, str):
    User.password = generate_password_hash(str)
    return User
  1. 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)