UNPKG

@hpke/common

Version:

A Hybrid Public Key Encryption (HPKE) internal-use common module for @hpke family modules.

9 lines 275 B
import type { KdfInterface } from "./kdfInterface.js"; import type { KemInterface } from "./kemInterface.js"; /** * The DHKEM interface. */ export interface DhkemInterface extends KemInterface { readonly kdf: KdfInterface; } //# sourceMappingURL=dhkemInterface.d.ts.map