UNPKG

@tigthor/kokocrypt

Version:

Enhanced Fortress Edition - Secure, quantum-resistant, high-performance encryption package

11 lines (10 loc) 232 B
export interface SessionKeys { rx: Uint8Array; tx: Uint8Array; kid: string; ts: number; } export declare const SessionContext: { set(keys: SessionKeys, cb: () => any): any; get(): SessionKeys | undefined; };