Export the JwkInfo interface The JwkInfo interface is used to define the information of JSON Web Key (JWK)

interface JwkInfo {
    keys: {
        kid?: string;
        x5c?: string[];
        x5u?: string;
        [key: string]: any;
    };
}

Properties

Properties

keys: {
    kid?: string;
    x5c?: string[];
    x5u?: string;
    [key: string]: any;
}

Type declaration

  • [key: string]: any
  • Optional kid?: string
  • Optional x5c?: string[]
  • Optional x5u?: string