File

src/verifier/resolver/dto/issuer-metadata.dto.ts

Description

Interface representing the issuer metadata.

Index

Properties

Properties

issuer
issuer: string
Type : string

The issuer identifier, typically a URL.

jwks
jwks: literal type
Type : literal type

The JSON Web Key Set (JWKS) containing the public keys for the issuer.

import { JWK } from 'jose';

/**
 * Interface representing the issuer metadata.
 */
export interface IssuerMetadata {
    /**
     * The issuer identifier, typically a URL.
     */
    issuer: string;
    /**
     * The JSON Web Key Set (JWKS) containing the public keys for the issuer.
     */
    jwks: {
        /**
         * List of keys in the JWKS.
         */
        keys: JWK[];
    };
}

results matching ""

    No results matching ""