Type alias KeyJWK

KeyJWK: {
    alg: "XChaCha20-Poly1305-IETF";
    ext: true;
    k: string;
    key_ops: ["encrypt", "decrypt", ...string[]] | ["decrypt", "encrypt", ...string[]];
    kty: "oct";
}

Symmetric Key JWK

Type declaration

  • alg: "XChaCha20-Poly1305-IETF"
  • ext: true
  • k: string
  • key_ops: ["encrypt", "decrypt", ...string[]] | ["decrypt", "encrypt", ...string[]]
  • kty: "oct"

Generated using TypeDoc