UNPKG

@hpke/core

Version:

A Hybrid Public Key Encryption (HPKE) core module for various JavaScript runtimes

10 lines 249 B
/** * The response of the single-shot seal API. */ export interface CipherSuiteSealResponse { /** The ciphertext as bytes. */ ct: ArrayBuffer; /** The encapsulated key. */ enc: ArrayBuffer; } //# sourceMappingURL=responses.d.ts.map