Concept Flow - Password hashing with bcrypt
Receive plain password
Generate salt with bcrypt
Hash password + salt
Store hashed password
Later: Receive login password
Compare login password with stored hash
Return match result: true/false
This flow shows how bcrypt creates a salt, hashes a password, stores it, and later compares login attempts securely.