A tuple with the token and the string to send in Set-Cookie If there's already a csrf value in the cookie then the token will be the same and the cookie will be null.
Generates a random string in Base64URL to be used as an authenticity token for CSRF protection.
The number of bytes used to generate the token
A random string in Base64URL
Get the existing token from the cookie or generate a new one if it doesn't exist.
The existing token if it exists in the cookie, otherwise a new token.
Verify if a request and cookie has a valid CSRF token.
export async function action({ request }: ActionFunctionArgs) {
await csrf.validate(request);
// the request is authenticated and you can do anything here
}
Verify if a request and cookie has a valid CSRF token.
export async function action({ request }: ActionFunctionArgs) {
await csrf.validate(request);
// the request is authenticated and you can do anything here
}
Generates a token and serialize it into the cookie.