Concept Flow - Password hashing with Werkzeug
User inputs password
Call generate_password_hash(password)
Werkzeug creates hashed password
Store hashed password safely
User login attempt
Call check_password_hash(stored_hash, input_password)
Werkzeug compares input with stored hash
Return True if match, False if not
This flow shows how a password is hashed when created and then checked during login using Werkzeug functions.