Documentation
    Preparing search index...
    interface OKPJWKPrivate {
        alg?: "EdDSA";
        crv: "Ed25519";
        d: string;
        key_ops?: KeyOps[];
        kid?: string;
        kty: "OKP";
        use?: "sig" | "enc";
        x: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alg?: "EdDSA"
    crv: "Ed25519"
    d: string

    The parameter "d" MUST be present and contain the private key encoded using the base64url [RFC4648] encoding.

    key_ops?: KeyOps[]
    kid?: string

    The kid (key ID) parameter is used to match a specific key. Recommended that kid is set to the fingerprint of the public key.

    kty: "OKP"
    use?: "sig" | "enc"
    x: string

    The parameter "x" MUST be present and contain the public key encoded using the base64url [RFC4648] encoding.