FROST Rerandomized TypeScript Library - v0.2.2-alpha.3
    Preparing search index...

    Interface DKGTestVectorsJson

    JSON structure for DKG test vectors.

    interface DKGTestVectorsJson {
        config: {
            MAX_PARTICIPANTS: number;
            MIN_PARTICIPANTS: number;
            name?: string;
            group?: string;
            hash?: string;
        };
        inputs: {
            verifying_key: string;
            secret?: string;
            [participantId: string]: string
            | ParticipantData
            | undefined;
        };
    }
    Index

    Properties

    Properties

    config: {
        MAX_PARTICIPANTS: number;
        MIN_PARTICIPANTS: number;
        name?: string;
        group?: string;
        hash?: string;
    }
    inputs: {
        verifying_key: string;
        secret?: string;
        [participantId: string]: string | ParticipantData | undefined;
    }