from passlib.hash import bcrypt # Generate correct hash for admin123 password = "admin123" correct_hash = bcrypt.hash(password) print(f"Correct hash for 'admin123':") print(correct_hash) # Verify it works result = bcrypt.verify(password, correct_hash) print(f"\nVerification test: {result}")