UNPKG

ts-mls

Version:

[![CI](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml/badge.svg)](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [![npm version](https://badge.fury.io/js/ts-mls.svg)](https://badge.fury.io/js/ts-mls) [![Coverage Status](https://co

11 lines (10 loc) 410 B
import { Decoder } from "./codec/tlsDecoder.js"; import { Encoder } from "./codec/tlsEncoder.js"; import { PreSharedKeyID } from "./presharedkey.js"; export interface GroupSecrets { joinerSecret: Uint8Array; pathSecret: Uint8Array | undefined; psks: PreSharedKeyID[]; } export declare const encodeGroupSecrets: Encoder<GroupSecrets>; export declare const decodeGroupSecrets: Decoder<GroupSecrets>;