Kill the Clipboard - SMART Health Cards Library - v1.1.0
    Preparing search index...

    Interface IssuerCrl

    Representation of a Certificate Revocation List (CRL) entry used by the directory to mark revoked resource IDs for a given key.

    interface IssuerCrl {
        ctr: number;
        kid: string;
        method: string;
        rids: Set<string>;
        ridsTimestamps: Map<string, string>;
    }
    Index

    Properties

    ctr: number

    Monotonic counter for CRL updates.

    kid: string

    The kid of the key this CRL pertains to.

    method: string

    Revocation method identifier (e.g. 'rid').

    rids: Set<string>

    List of revoked resource ids (rids).

    ridsTimestamps: Map<string, string>

    Map of revoked resource ids to their revocation timestamps.