auth.provider API
    Preparing search index...

    Interface AsymmetricKeyStoreOptions

    interface AsymmetricKeyStoreOptions {
        algorithm: "RS256" | "ES256" | "EdDSA";
        kid: string;
        previousKeys?: { expiresAt: Date; kid: string; publicKeyPem: string }[];
        privateKeyPem: string;
        publicKeyPem: string;
    }
    Index

    Properties

    algorithm: "RS256" | "ES256" | "EdDSA"
    kid: string
    previousKeys?: { expiresAt: Date; kid: string; publicKeyPem: string }[]
    privateKeyPem: string
    publicKeyPem: string