Type alias JwkParamsRsaPublic

JwkParamsRsaPublic: Omit<JwkParamsAnyKeyType, "kty"> & {
    e: string;
    kty: "RSA";
    n: string;
}

Parameters Used with "RSA" public keys.

Type declaration

  • e: string

    Public exponent for RSA

  • kty: "RSA"

    Key type RSA is widely used for encryption and digital signatures.

  • n: string

    Modulus for RSA