Skip to content

Commit

Permalink
Merge pull request #608 from cflee/missing-kid
Browse files Browse the repository at this point in the history
fix(ndi): fix missing kid on JWS header
  • Loading branch information
LoneRifle authored Oct 11, 2023
2 parents e2c4b68 + efc7ab8 commit 63aecf7
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 @@ -465,7 +465,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 63aecf7

Please sign in to comment.