Meshpocalypse Semantic
    Preparing search index...

    Interface JwtKeyPair

    interface JwtKeyPair {
        privateJwk: JWK;
        privateKey: CryptoKey;
        publicJwk: JWK;
        publicKey: CryptoKey;
    }
    Index

    Properties

    privateJwk: JWK

    Private JWK (for serialisation / persistence).

    privateKey: CryptoKey

    CryptoKey for signing (private).

    publicJwk: JWK

    Public JWK for inclusion in JWKS endpoint.

    publicKey: CryptoKey

    CryptoKey for verification (public).