ts-mls
Version:
[](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [](https://badge.fury.io/js/ts-mls) [ • 399 B
TypeScript
import { Decoder } from "./codec/tlsDecoder";
import { Encoder } from "./codec/tlsEncoder";
import { PreSharedKeyID } from "./presharedkey";
export type GroupSecrets = {
joinerSecret: Uint8Array;
pathSecret: Uint8Array | undefined;
psks: PreSharedKeyID[];
};
export declare const encodeGroupSecrets: Encoder<GroupSecrets>;
export declare const decodeGroupSecrets: Decoder<GroupSecrets>;