Type alias PublicKeyJWK

PublicKeyJWK: {
    alg: "EdDSA";
    crv: "Ed25519";
    ext: true;
    key_ops: ["verify", ...string[]];
    kty: "OKP";
    x: string;
}

Public Key JWK

Type declaration

  • alg: "EdDSA"
  • crv: "Ed25519"
  • ext: true
  • key_ops: ["verify", ...string[]]
  • kty: "OKP"
  • x: string

Generated using TypeDoc