IKeyBindingJWTValidationOptions
@iota/identity-wasm API documentation
Interface: IKeyBindingJWTValidationOptions
Holds options to create a new KeyBindingJWTValidationOptions.
Properties
nonce?
readonlyoptionalnonce:string
Validates the nonce value of the KB-JWT claims.
aud?
readonlyoptionalaud:string
Validates the aud properties in the KB-JWT claims.
jwsOptions
readonlyjwsOptions:JwsVerificationOptions
Options which affect the verification of the signature on the KB-JWT.
earliestIssuanceDate?
readonlyoptionalearliestIssuanceDate:Timestamp
Declares that the KB-JWT is considered invalid if the iat value in the claims
is earlier than this timestamp.
latestIssuanceDate?
readonlyoptionallatestIssuanceDate:Timestamp
Declares that the KB-JWT is considered invalid if the iat value in the claims is
later than this timestamp.
Uses the current timestamp during validation if not set.