IO Wallet SDK
    Preparing search index...
    type JwtSignerJwk = {
        alg: string;
        kid?: string;
        method: "jwk";
        publicJwk: Jwk;
    }
    Index

    Properties

    alg: string
    kid?: string

    The key id that should be used for signing. You need to make sure the kid actuall matches with the key associated with the jwk.

    If not provided the kid can also be extracted from the publicJwk. Providing it here means the kid won't be included in the JWT header.

    method: "jwk"
    publicJwk: Jwk