DPoP Adoption & Identity Security Architecture
Demonstrating Proof-of-Possession (DPoP, RFC 9449) secures OAuth 2.0 refresh
tokens against interception and replay attacks by cryptographically binding them
to a private key held exclusively by the client. In Google's OAuth 2.0 platform,
DPoP binds the refresh token at the token endpoint, while access tokens issued
for Google APIs are standard Bearer tokens (token_type: "Bearer").
1. Core Cryptographic & Architectural Invariants
When implementing DPoP helpers or upgrading HTTP clients, you MUST adhere to the
following strict security invariants:
A. Universal WebCrypto & Runtime Compatibility
- In modern ES6 JavaScript (
"type": "module" for Node 18+ and browsers),
ALWAYS access globalThis.crypto directly after verifying the environment
context.
- NEVER import legacy CommonJS modules via
require('node:crypto') or
reference browser-scoped window.crypto, as these cause module
initialization crashes across hybrid runtimes.
B. Hardware-Backed Non-Extractable Key Persistence
- Generate an Elliptic Curve key pair on the SECP256R1 (
P-256) curve: { name: 'ECDSA', namedCurve: 'P-256' }.
- CRITICAL SECURITY GUARDRAIL: The private key MUST be configured as
non-extractable (
extractable: false). This guarantees the private key
can never leave the hardware cryptographic boundary (Secure Enclave, Android
KeyStore, or JS sandbox memory), thwarting XSS and dependency token theft
attacks.
- The public key MUST remain exportable (
extractable: true) to allow
emitting JSON Web Keys (JWKs).
C. Public JWK Formatting Standards
- When exporting public keys to attach to DPoP Proof JWT headers, construct a
clean JWK dictionary containing strictly:
"kty": "EC"
"crv": "P-256"
"x": Base64URL-encoded x-coordinate without trailing equal sign
padding (=).
"y": Base64URL-encoded y-coordinate without trailing equal sign
padding (=).
- NEVER expose private key parameters (
"d") or superfluous metadata.
D. IEEE P1363 vs. ASN.1 DER Signature Disambiguation
- DPoP Proof JWTs require raw concatenated coordinate signatures ($R \parallel
S$, exactly 64 bytes for P-256) per IEEE P1363 and RFC 7518.
- WebCrypto Native Rule: In standard WebCrypto (
crypto.subtle.sign),
ECDSA signatures are ALREADY emitted natively in raw IEEE P1363 format
(concatenated 32-byte r and s buffers, 64 bytes total). DO NOT
attempt DER-to-Raw conversion on crypto.subtle.sign outputs, as parsing a
64-byte raw buffer as ASN.1 DER causes an immediate runtime exception
(Invalid DER sequence). Directly base64url-encode the raw ArrayBuffer.
- Legacy API Fallback: If and only if implementing in legacy Java/Android
(
java.security.Signature) or Node CommonJS (crypto.createSign), convert
ASN.1 DER output to raw 64-byte IEEE P1363 format before base64url encoding.
E. SPA & Backend-for-Frontend (BFF) Architecture
- Secretless SPAs Limitation: Pure client-side single-page applications
(SPAs) without a backend cannot use DPoP directly with Google APIs due to
client_secret requirements on server endpoints and browser CORS
limitations on the DPoP-Nonce response header.
- BFF Pattern: To secure SPAs with DPoP, route authorization and token
refresh requests through a Backend-for-Frontend (BFF) server-side client.
The BFF sets
access_type=offline, binds refresh tokens server-side using
DPoP, and maintains secure session cookies with the frontend.
2. Implementation Rules & Mandatory Public API
When creating new modules, your module MUST explicitly export all functions
below to integrate cleanly with CI/CD verification harnesses and automated
probers. When inspecting or refactoring existing codebases, ensure equivalent
cryptographic and RFC 9449 logic is present. Obey strict claim derivation logic
in all cases:
A. DPoP Proof JWT Claim Derivation Rules (createDPoPProof)
When generating the DPoP Proof JWT in createDPoPProof:
1. JOSE Header (typ, alg, jwk):
// Header
{
"typ": "dpop+jwt",
"alg": "ES256",
"jwk": await exportPublicJWK(publicKey)
}
2. Payload Claims:
"htm": Uppercase HTTP Method ("POST" for token requests).
"htu": Target URI stripped of query parameters and hash fragments using
sanitizeHTU(htu). For token requests, this is
https://oauth2.googleapis.com/token.
"iat": Current integer epoch timestamp in seconds
(Math.floor(Date.now() / 1000)).
"jti" (Critical Invariant):
- If an explicit
jti argument is provided to createDPoPProof, use that
exact string over all others.
- Otherwise, if an
authCode argument is provided (during initial code
exchange), set jti = await calculateAuthCodeJti(authCode) where
calculateAuthCodeJti computes base64url(sha256(authCode)) to ensure
the DPoP proof is cryptographically bound to the authorization code.
- Only if neither
jti nor authCode is provided, generate a fresh
cryptographic random string via generateRandomString() (such as
crypto.getRandomValues(new Uint8Array(24)) base64url encoded).
"ath" (Optional): If an accessToken argument is provided for RFC 9449
resource requests, compute base64url(sha256(accessToken)) via
calculateATH(accessToken) and inject it (RFC 9449 Section 6.1).
"nonce" (Optional): If a nonce argument is provided, inject it directly
into the payload.
B. Explicit Export Signatures
// 1. Key generation & JWK export
export async function generateDPoPKeyPair() // -> { publicKey, privateKey } (private key extractable=false)
export async function exportPublicJWK(publicKey) // -> { kty: 'EC', crv: 'P-256', x, y }
// 2. Proof generation & validation
export async function createDPoPProof({ privateKey, publicKey, htm, htu, nonce, accessToken, authCode, jti }) // -> signed JWT string
export async function verifyDPoPProof(dpopProofJwt) // -> { isValid: boolean, header, payload, error }
export function sanitizeHTU(htu) // -> URL stripped of query and hash: const u = new URL(htu); return `${u.origin}${u.pathname}`;
// 3. Cryptographic & encoding utilities
export function base64UrlEncode(buffer) // -> Uint8Array/ArrayBuffer to base64url string without '=' padding
export function base64UrlDecode(str) // -> base64url string to Uint8Array/Buffer
export function stringToBase64Url(str) // -> UTF-8 string to base64url
export function base64UrlToString(str) // -> base64url to UTF-8 string
export function generateRandomString(byteLength = 32) // -> cryptographic random base64url string
export async function calculateATH(accessToken) // -> base64url(sha256(accessToken)) per RFC 9449 Sec 6.1
export async function calculateAuthCodeJti(code) // -> base64url(sha256(code))
export async function generatePKCE() // -> { codeVerifier (>=43 chars), codeChallenge, codeChallengeMethod: 'S256' }
3. Token Endpoint & Resource Request Workflow
When integrating with Google's OAuth 2.0 platform:
- Token Endpoint Requests (
oauth2.googleapis.com/token):
- Attach the DPoP Proof JWT in the
DPoP HTTP header:
`DPoP: ${proofJwt}` when making POST requests for code exchange
(grant_type=authorization_code) and token refresh
(grant_type=refresh_token).
- Resource API Requests:
- Google's token endpoint returns
"token_type": "Bearer". Downstream
requests to Google APIs (e.g. Calendar, Drive, Gmail) use standard
`Authorization: Bearer ${accessToken}` headers without DPoP
headers.
- Single-Retry Nonce Challenge Loop & Workflow Isolation:
- If Google's token endpoint returns HTTP
400 Bad Request with
error: "use_dpop_nonce" and a "DPoP-Nonce" response header:
- Workflow Isolation: Google's authorization server enforces
workflow isolation between authorization code exchange and token
refresh, returning an HTTP
400 use_dpop_nonce challenge to
establish a fresh nonce namespace. This is standard RFC-compliant
protocol behavior, not a server failure.
- Cache the fresh nonce in client state (
this.dpopNonce).
- Immediately synthesize a new DPoP Proof JWT incorporating the
updated
nonce claim and a fresh jti.
- Replay the failed token request exactly once. If the retried
request fails, terminate immediately with an error to prevent
infinite recursion.
4. Concise Agent Egress Protocol
When prompted to synthesize or output code deliverables under this skill,
prioritize returning clean, directly importable code blocks without redundant
conversational preambles or repetitive filler. For conceptual or architectural
inquiries, provide standard direct answers.
5. References & Supporting Documentation
Developer Documentation (Google for Developers)
Developer Knowledge MCP Server
- Agents equipped with Model Context Protocol (
MCP) can query real-time
Google Developer documentation using the
Google Developer Knowledge MCP Server
(npx -y @google/mcp-developer-knowledge-server) via
developer_knowledge:search_documents and
developer_knowledge:get_documents.
Standards & RFC Specifications
1---2name: dpop-adoption3description: Implement and debug OAuth 2.0 DPoP (RFC 9449) refresh token sender-constraining for WebCrypto, Node.js ES6, and browser runtimes integrating with Google's OAuth platform. Use when configuring non-extractable asymmetric key pairs (P-256), generating DPoP Proof JWTs for authorization code exchange and token refresh, or handling 400 use_dpop_nonce challenge retry loops at oauth2.googleapis.com/token. Don't use for unconstrained OAuth 2.0 flows (where refresh tokens are not bound to a client key pair), or for Google Cloud IAM / service account authentication.4---56# DPoP Adoption & Identity Security Architecture78Demonstrating Proof-of-Possession (DPoP, RFC 9449) secures OAuth 2.0 refresh9tokens against interception and replay attacks by cryptographically binding them10to a private key held exclusively by the client. In Google's OAuth 2.0 platform,11DPoP binds the refresh token at the token endpoint, while access tokens issued12for Google APIs are standard Bearer tokens (`token_type: "Bearer"`).1314## 1. Core Cryptographic & Architectural Invariants1516When implementing DPoP helpers or upgrading HTTP clients, you MUST adhere to the17following strict security invariants:1819### A. Universal WebCrypto & Runtime Compatibility2021- In modern ES6 JavaScript (`"type": "module"` for Node 18+ and browsers),22 ALWAYS access `globalThis.crypto` directly after verifying the environment23 context.24- **NEVER** import legacy CommonJS modules via `require('node:crypto')` or25 reference browser-scoped `window.crypto`, as these cause module26 initialization crashes across hybrid runtimes.2728### B. Hardware-Backed Non-Extractable Key Persistence2930- Generate an Elliptic Curve key pair on the SECP256R1 (`P-256`) curve: `{31 name: 'ECDSA', namedCurve: 'P-256' }`.32- **CRITICAL SECURITY GUARDRAIL:** The private key MUST be configured as33 **non-extractable** (`extractable: false`). This guarantees the private key34 can never leave the hardware cryptographic boundary (Secure Enclave, Android35 KeyStore, or JS sandbox memory), thwarting XSS and dependency token theft36 attacks.37- The public key MUST remain exportable (`extractable: true`) to allow38 emitting JSON Web Keys (JWKs).3940### C. Public JWK Formatting Standards4142- When exporting public keys to attach to DPoP Proof JWT headers, construct a43 clean JWK dictionary containing strictly:44 - `"kty": "EC"`45 - `"crv": "P-256"`46 - `"x"`: Base64URL-encoded x-coordinate without trailing equal sign47 padding (`=`).48 - `"y"`: Base64URL-encoded y-coordinate without trailing equal sign49 padding (`=`).50- **NEVER** expose private key parameters (`"d"`) or superfluous metadata.5152### D. IEEE P1363 vs. ASN.1 DER Signature Disambiguation5354- DPoP Proof JWTs require raw concatenated coordinate signatures ($R \parallel55 S$, exactly 64 bytes for P-256) per IEEE P1363 and RFC 7518.56- **WebCrypto Native Rule:** In standard WebCrypto (`crypto.subtle.sign`),57 ECDSA signatures are ALREADY emitted natively in raw IEEE P1363 format58 (concatenated 32-byte `r` and `s` buffers, 64 bytes total). **DO NOT**59 attempt DER-to-Raw conversion on `crypto.subtle.sign` outputs, as parsing a60 64-byte raw buffer as ASN.1 DER causes an immediate runtime exception61 (`Invalid DER sequence`). Directly base64url-encode the raw ArrayBuffer.62- **Legacy API Fallback:** If and only if implementing in legacy Java/Android63 (`java.security.Signature`) or Node CommonJS (`crypto.createSign`), convert64 ASN.1 DER output to raw 64-byte IEEE P1363 format before base64url encoding.6566### E. SPA & Backend-for-Frontend (BFF) Architecture6768- **Secretless SPAs Limitation:** Pure client-side single-page applications69 (SPAs) without a backend cannot use DPoP directly with Google APIs due to70 `client_secret` requirements on server endpoints and browser CORS71 limitations on the `DPoP-Nonce` response header.72- **BFF Pattern:** To secure SPAs with DPoP, route authorization and token73 refresh requests through a Backend-for-Frontend (BFF) server-side client.74 The BFF sets `access_type=offline`, binds refresh tokens server-side using75 DPoP, and maintains secure session cookies with the frontend.7677## 2. Implementation Rules & Mandatory Public API7879When creating new modules, your module MUST explicitly export all functions80below to integrate cleanly with CI/CD verification harnesses and automated81probers. When inspecting or refactoring existing codebases, ensure equivalent82cryptographic and RFC 9449 logic is present. Obey strict claim derivation logic83in all cases:8485### A. DPoP Proof JWT Claim Derivation Rules (`createDPoPProof`)8687When generating the DPoP Proof JWT in `createDPoPProof`:8889**1. JOSE Header (`typ`, `alg`, `jwk`):**90```javascript91// Header92{93 "typ": "dpop+jwt",94 "alg": "ES256",95 "jwk": await exportPublicJWK(publicKey)96}97```9899**2. Payload Claims:**100- `"htm"`: Uppercase HTTP Method (`"POST"` for token requests).101- `"htu"`: Target URI stripped of query parameters and hash fragments using102 `sanitizeHTU(htu)`. For token requests, this is103 `https://oauth2.googleapis.com/token`.104- `"iat"`: Current integer epoch timestamp in seconds105 (`Math.floor(Date.now() / 1000)`).106- `"jti"` (Critical Invariant):107 1. If an explicit `jti` argument is provided to `createDPoPProof`, use that108 exact string over all others.109 2. Otherwise, if an `authCode` argument is provided (during initial code110 exchange), set `jti = await calculateAuthCodeJti(authCode)` where111 `calculateAuthCodeJti` computes `base64url(sha256(authCode))` to ensure112 the DPoP proof is cryptographically bound to the authorization code.113 3. Only if neither `jti` nor `authCode` is provided, generate a fresh114 cryptographic random string via `generateRandomString()` (such as115 `crypto.getRandomValues(new Uint8Array(24))` base64url encoded).116- `"ath"` (Optional): If an `accessToken` argument is provided for RFC 9449117 resource requests, compute `base64url(sha256(accessToken))` via118 `calculateATH(accessToken)` and inject it (RFC 9449 Section 6.1).119- `"nonce"` (Optional): If a `nonce` argument is provided, inject it directly120 into the payload.121122### B. Explicit Export Signatures123124```javascript125// 1. Key generation & JWK export126export async function generateDPoPKeyPair() // -> { publicKey, privateKey } (private key extractable=false)127export async function exportPublicJWK(publicKey) // -> { kty: 'EC', crv: 'P-256', x, y }128129// 2. Proof generation & validation130export async function createDPoPProof({ privateKey, publicKey, htm, htu, nonce, accessToken, authCode, jti }) // -> signed JWT string131export async function verifyDPoPProof(dpopProofJwt) // -> { isValid: boolean, header, payload, error }132export function sanitizeHTU(htu) // -> URL stripped of query and hash: const u = new URL(htu); return `${u.origin}${u.pathname}`;133134// 3. Cryptographic & encoding utilities135export function base64UrlEncode(buffer) // -> Uint8Array/ArrayBuffer to base64url string without '=' padding136export function base64UrlDecode(str) // -> base64url string to Uint8Array/Buffer137export function stringToBase64Url(str) // -> UTF-8 string to base64url138export function base64UrlToString(str) // -> base64url to UTF-8 string139export function generateRandomString(byteLength = 32) // -> cryptographic random base64url string140export async function calculateATH(accessToken) // -> base64url(sha256(accessToken)) per RFC 9449 Sec 6.1141export async function calculateAuthCodeJti(code) // -> base64url(sha256(code))142export async function generatePKCE() // -> { codeVerifier (>=43 chars), codeChallenge, codeChallengeMethod: 'S256' }143```144145## 3. Token Endpoint & Resource Request Workflow146147When integrating with Google's OAuth 2.0 platform:1481491. **Token Endpoint Requests (`oauth2.googleapis.com/token`):**150 - Attach the DPoP Proof JWT in the `DPoP` HTTP header:151 `` `DPoP: ${proofJwt}` `` when making `POST` requests for code exchange152 (`grant_type=authorization_code`) and token refresh153 (`grant_type=refresh_token`).1542. **Resource API Requests:**155 - Google's token endpoint returns `"token_type": "Bearer"`. Downstream156 requests to Google APIs (e.g. Calendar, Drive, Gmail) use standard157 `` `Authorization: Bearer ${accessToken}` `` headers without DPoP158 headers.1593. **Single-Retry Nonce Challenge Loop & Workflow Isolation:**160 - If Google's token endpoint returns HTTP `400 Bad Request` with161 `error: "use_dpop_nonce"` and a `"DPoP-Nonce"` response header:162 - **Workflow Isolation:** Google's authorization server enforces163 workflow isolation between authorization code exchange and token164 refresh, returning an HTTP `400 use_dpop_nonce` challenge to165 establish a fresh nonce namespace. This is standard RFC-compliant166 protocol behavior, not a server failure.167 - Cache the fresh nonce in client state (`this.dpopNonce`).168 - Immediately synthesize a new DPoP Proof JWT incorporating the169 updated `nonce` claim and a fresh `jti`.170 - Replay the failed token request **exactly once**. If the retried171 request fails, terminate immediately with an error to prevent172 infinite recursion.173174## 4. Concise Agent Egress Protocol175176When prompted to synthesize or output code deliverables under this skill,177prioritize returning clean, directly importable code blocks without redundant178conversational preambles or repetitive filler. For conceptual or architectural179inquiries, provide standard direct answers.180181## 5. References & Supporting Documentation182183### Developer Documentation (Google for Developers)184- [DPoP Adoption Guide](https://developers.google.com/identity/protocols/oauth2/resources/dpop-adoption) —185 Official Google Identity guide for implementing DPoP across authorization186 code exchange and token refresh.187- [Using OAuth 2.0 for Web Server Applications](https://developers.google.com/identity/protocols/oauth2/web-server#offline) —188 Offline access, refresh tokens, and server-side authorization flows.189- [OAuth 2.0 Best Practices: Sender-Constrain Tokens](https://developers.google.com/identity/protocols/oauth2/resources/best-practices#sender-constrain-tokens) —190 Recommendations for token storage, rotation, and sender-constraining.191192### Developer Knowledge MCP Server193- Agents equipped with Model Context Protocol (`MCP`) can query real-time194 Google Developer documentation using the195 [Google Developer Knowledge MCP Server](https://developers.google.com/knowledge/mcp)196 (`npx -y @google/mcp-developer-knowledge-server`) via197 `developer_knowledge:search_documents` and198 `developer_knowledge:get_documents`.199200### Standards & RFC Specifications201- [RFC 9449: OAuth 2.0 Demonstrating Proof-of-Possession (DPoP)](https://datatracker.ietf.org/doc/html/rfc9449)202- [RFC 7519: JSON Web Token (JWT)](https://datatracker.ietf.org/doc/html/rfc7519)203- [RFC 7636: Proof Key for Code Exchange by OAuth Public Clients (PKCE)](https://datatracker.ietf.org/doc/html/rfc7636)