Question 7
Consider the following Flask application configuration for Flask-Security, with the User and Role models properly defined with flask-sqlalchemy.
A user successfully logs in to the application. Based on this configuration, which of the following statements is MOST ACCURATE?
The user's authentication token will be sent in the response header named "X- Auth-Token" and can be used for subsequent API requests.
CSRF protection blocks cross-origin requests to protect against malicious applications accessing sensitive data.
The authentication token will be generated using the SECRET_KEY = “production-secret- key".
The authentication token will be generated using the argon2 algorithm, since SECURITY_PASSWORD_HASH is set to "argon2".