├── CHANGELOG.md ├── CsrfToken.php ├── CsrfTokenManager.php ├── CsrfTokenManagerInterface.php ├── Exception └── TokenNotFoundException.php ├── LICENSE ├── README.md ├── SameOriginCsrfTokenManager.php ├── TokenGenerator ├── TokenGeneratorInterface.php └── UriSafeTokenGenerator.php ├── TokenStorage ├── ClearableTokenStorageInterface.php ├── NativeSessionTokenStorage.php ├── SessionTokenStorage.php └── TokenStorageInterface.php └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/CsrfToken.php -------------------------------------------------------------------------------- /CsrfTokenManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/CsrfTokenManager.php -------------------------------------------------------------------------------- /CsrfTokenManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/CsrfTokenManagerInterface.php -------------------------------------------------------------------------------- /Exception/TokenNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/Exception/TokenNotFoundException.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/README.md -------------------------------------------------------------------------------- /SameOriginCsrfTokenManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/SameOriginCsrfTokenManager.php -------------------------------------------------------------------------------- /TokenGenerator/TokenGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenGenerator/TokenGeneratorInterface.php -------------------------------------------------------------------------------- /TokenGenerator/UriSafeTokenGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenGenerator/UriSafeTokenGenerator.php -------------------------------------------------------------------------------- /TokenStorage/ClearableTokenStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenStorage/ClearableTokenStorageInterface.php -------------------------------------------------------------------------------- /TokenStorage/NativeSessionTokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenStorage/NativeSessionTokenStorage.php -------------------------------------------------------------------------------- /TokenStorage/SessionTokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenStorage/SessionTokenStorage.php -------------------------------------------------------------------------------- /TokenStorage/TokenStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/TokenStorage/TokenStorageInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-csrf/HEAD/composer.json --------------------------------------------------------------------------------