Skip to main content
info
IOTA Identity for Rebased is currently in alpha and may still be subject to significant changes

IKeyBindingJWTValidationOptions

@iota/identity-wasm API documentation


Interface: IKeyBindingJWTValidationOptions

Holds options to create a new KeyBindingJWTValidationOptions.

Properties

nonce?

readonly optional nonce: string

Validates the nonce value of the KB-JWT claims.


aud?

readonly optional aud: string

Validates the aud properties in the KB-JWT claims.


jwsOptions

readonly jwsOptions: JwsVerificationOptions

Options which affect the verification of the signature on the KB-JWT.


earliestIssuanceDate?

readonly optional earliestIssuanceDate: Timestamp

Declares that the KB-JWT is considered invalid if the iat value in the claims is earlier than this timestamp.


latestIssuanceDate?

readonly optional latestIssuanceDate: 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.