Skip to content

Commit

Permalink
fix(ndi): fix missing kid on JWS header
Browse files Browse the repository at this point in the history
  • Loading branch information
cflee committed Oct 9, 2023
1 parent bbfa1ca commit 8c5c63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/express/oidc/v2-ndi.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ function config(app, { showLoginPage }) {
const signedProtectedHeader = {
alg: 'ES256',
typ: 'JWT',
kid: signingKey.kid,
kid: aspSigningKey.kid,
}
const signedIdToken = await new jose.CompactSign(
new TextEncoder().encode(JSON.stringify(idTokenClaims)),
Expand Down

0 comments on commit 8c5c63e

Please sign in to comment.