Flask - Security Best Practices
What will the following Flask code output if the password check fails?
from werkzeug.security import check_password_hash, generate_password_hash
stored_hash = generate_password_hash('secret123')
result = check_password_hash(stored_hash, 'wrongpass')
print(result)