UNPKG

noble-xwing

Version:

Typescript implementation of the X-Wing hybrid Post Quantum KEM using the noble library, as outlined in https://eprint.iacr.org/2024/039.

6 lines (5 loc) 167 B
export type DH = { genSecretKey: () => Uint8Array; publicKey: (sk: Uint8Array) => Uint8Array; exchange: (sk: Uint8Array, pk: Uint8Array) => Uint8Array; };