CSRF middleware for [actix-web] 4.0.0 or newer that uses the Double-Submit Token pattern.
This crate has not yet been audited. Use in production at your own risk.
Installing the middleware is standard: Specify a cryptographically secure RNG to use, and declare which paths should set a CSRF cookie and when should validate a CSRF cookie.
```rust
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
let csrf = Csrf::
Then, use the CsrfCookie
extractor to pull the CSRF cookie and validate it
with a CSRF token provided as part of the protected request.
```rust
struct LoginForm { csrf_token: CsrfToken, username: String, password: String, }
impl CsrfGuarded for LoginForm { fn csrftoken(&self) -> &CsrfToken { &self.csrftoken } }
/// Validates a login form that has a CSRF token.
async fn login(form: Csrf