Access Tokens
Token Generation
token = base64url(keccak256(signature || "Nullmask access token")[0:16])Token Delivery
Mechanism
Priority
Details
Cookie Security
httpOnly: true // No JavaScript access (prevents XSS token theft)
secure: true // HTTPS only (prevents interception)
sameSite: 'none' // Allow cross-site requests with credentials
domain: baseDomain // Accessible to all subdomainsData Isolation
CORS Protection
Token Lifecycle
Last updated