CML
    Preparing search index...

    Type Alias CoseKeyJwk

    A JWK (JSON Web Key) representation of a COSE public key, suitable for use with the WebCrypto importKey API.

    type CoseKeyJwk = {
        crv: string;
        kty: string;
        x: string;
        y?: string;
    }
    Index

    Properties

    Properties

    crv: string
    kty: string
    x: string
    y?: string