We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653fe87 commit f3aed2dCopy full SHA for f3aed2d
packages/core/src/index.ts
@@ -206,7 +206,7 @@ export class SDJwtInstance<ExtendedPayload extends SdJwtPayload> {
206
if (!sdjwt.jwt || !sdjwt.jwt.payload) {
207
throw new SDJWTException('Invalid SD JWT');
208
}
209
- const { payload, header } = await this.validate(encodedSDJwt);
+ const { payload, header } = await this.validate(encodedSDJwt, options);
210
211
if (options?.requiredClaimKeys) {
212
const keys = await sdjwt.keys(hasher);
0 commit comments