Flask - Security Best Practices
Examine this Flask code snippet:
What is the issue with this code?
from werkzeug.security import generate_password_hash, check_password_hash
password = 'mypassword'
hash = generate_password_hash(password)
if check_password_hash(hash, password):
print('Access granted')What is the issue with this code?
