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.

4 lines (3 loc) 161 B
import { DH } from "./dh"; import { KEM } from "./kem"; export declare function hkdfSha256KemForDH(dh: DH): KEM<Uint8Array, Uint8Array, Uint8Array, Uint8Array>;