Meshpocalypse Semantic
    Preparing search index...

    Interface KeySet

    Represents the set of JWT signing keys managed by IdentityProvider.

    interface KeySet {
        activeKey: JWK;
        previousKey?: JWK;
        rotatedAt: string;
    }
    Index

    Properties

    activeKey: JWK

    Current signing key (JWK private key).

    previousKey?: JWK

    Previous signing key — kept for grace-period validation after rotation.

    rotatedAt: string

    ISO 8601 timestamp of the last rotation.