ts-mls
Version:
[](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [](https://badge.fury.io/js/ts-mls) [ • 317 B
TypeScript
import { Decoder } from "./codec/tlsDecoder";
import { Encoder } from "./codec/tlsEncoder";
export type HPKECiphertext = {
kemOutput: Uint8Array;
ciphertext: Uint8Array;
};
export declare const encodeHpkeCiphertext: Encoder<HPKECiphertext>;
export declare const decodeHpkeCiphertext: Decoder<HPKECiphertext>;