@microsoft/ccf-app
    Preparing search index...

    Interface JsonWebKeyRSAPublic

    Interfaces for JSON Web Key objects, as per RFC7517.

    interface JsonWebKeyRSAPublic {
        e: string;
        kid?: string;
        kty: string;
        n: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    e: string

    Base64url-encoded exponent.

    kid?: string

    Key ID.

    kty: string

    Key type.

    n: string

    Base64url-encoded modulus.