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

    Interface DKGTestVectors<C>

    DKG test vectors structure for a ciphersuite.

    interface DKGTestVectors<C extends Ciphersuite> {
        secret: SigningKey<C>;
        coefficient: C["Scalar"];
        round1Packages: Map<string, round1.Package<C>>;
        round2Packages: Map<string, round2.Package<C>>;
        publicKeyPackage: PublicKeyPackage<C>;
        keyPackage: KeyPackage<C>;
        participantId: Identifier<C>;
    }

    Type Parameters

    Index

    Properties

    secret: SigningKey<C>
    coefficient: C["Scalar"]
    round1Packages: Map<string, round1.Package<C>>
    round2Packages: Map<string, round2.Package<C>>
    publicKeyPackage: PublicKeyPackage<C>
    keyPackage: KeyPackage<C>
    participantId: Identifier<C>