pub trait CsrfProtection: Send + Sync {
// Required methods
fn generate_cookie(
&self,
token_value: &[u8; 64],
ttl_seconds: i64,
) -> Result<CsrfCookie, CsrfError>;
fn generate_token(
&self,
token_value: &[u8; 64],
) -> Result<CsrfToken, CsrfError>;
fn parse_cookie(
&self,
cookie: &[u8],
) -> Result<UnencryptedCsrfCookie, CsrfError>;
fn parse_token(
&self,
token: &[u8],
) -> Result<UnencryptedCsrfToken, CsrfError>;
// Provided methods
fn verify_token_pair(
&self,
token: &UnencryptedCsrfToken,
cookie: &UnencryptedCsrfCookie,
) -> Result<(), CsrfError> { ... }
fn random_bytes(&self, buf: &mut [u8]) -> Result<(), CsrfError> { ... }
fn generate_token_pair(
&self,
previous_token_value: Option<&[u8; 64]>,
ttl_seconds: i64,
) -> Result<(CsrfToken, CsrfCookie), CsrfError> { ... }
}
Expand description
The base trait that allows a developer to add CSRF protection to an application.
Required Methods§
Given a nonce and a time to live (TTL), create a cookie to send to the end user.
Sourcefn generate_token(&self, token_value: &[u8; 64]) -> Result<CsrfToken, CsrfError>
fn generate_token(&self, token_value: &[u8; 64]) -> Result<CsrfToken, CsrfError>
Given a nonce, create a token to send to the end user.
Given a decoded byte array, deserialize, decrypt, and verify the cookie.
Sourcefn parse_token(&self, token: &[u8]) -> Result<UnencryptedCsrfToken, CsrfError>
fn parse_token(&self, token: &[u8]) -> Result<UnencryptedCsrfToken, CsrfError>
Given a decoded byte array, deserialize, decrypt, and verify the token.
Provided Methods§
Sourcefn verify_token_pair(
&self,
token: &UnencryptedCsrfToken,
cookie: &UnencryptedCsrfCookie,
) -> Result<(), CsrfError>
fn verify_token_pair( &self, token: &UnencryptedCsrfToken, cookie: &UnencryptedCsrfCookie, ) -> Result<(), CsrfError>
Given a token pair that has been parsed, decoded, decrypted, and verified, return whether or not the token matches the cookie and they have not expired.
Sourcefn random_bytes(&self, buf: &mut [u8]) -> Result<(), CsrfError>
fn random_bytes(&self, buf: &mut [u8]) -> Result<(), CsrfError>
Given a buffer, fill it with random bytes or error if this is not possible.
Sourcefn generate_token_pair(
&self,
previous_token_value: Option<&[u8; 64]>,
ttl_seconds: i64,
) -> Result<(CsrfToken, CsrfCookie), CsrfError>
fn generate_token_pair( &self, previous_token_value: Option<&[u8; 64]>, ttl_seconds: i64, ) -> Result<(CsrfToken, CsrfCookie), CsrfError>
Given an optional previous token and a TTL, generate a matching token and cookie pair.