UNPKG

lighthouse-encryption-sdk-browser

Version:

Encryption SDK: Build your trustless, decentralized and fault resistance Application using distributed key shades with threshold cryptography

9 lines (8 loc) 200 B
import { KeyShard } from "../../types"; export declare const recoverKey: (keyShards: KeyShard[]) => Promise<{ masterKey: string; error: null; } | { masterKey: null; error: string; }>;