DefaultCsrfProvider deprecated
class DefaultCsrfProvider implements CsrfProviderInterface
deprecated
Default implementation of CsrfProviderInterface.
This provider uses the session ID returned by session_id() as well as a user-defined secret value to secure the CSRF token.
Methods
__construct(string $secret)
Initializes the provider with a secret value.
string
generateCsrfToken(string $intention)
Generates a CSRF token for a page of your application.
bool
isCsrfTokenValid(string $intention, string $token)
Validates a CSRF token.
Details
at line line 46
__construct(string $secret)
Initializes the provider with a secret value.
A recommended value for the secret is a generated value with at least 32 characters and mixed letters, digits and special characters.
at line line 54
string
generateCsrfToken(string $intention)
Generates a CSRF token for a page of your application.
at line line 62
bool
isCsrfTokenValid(string $intention, string $token)
Validates a CSRF token.