github.com/koko1123/flow-go-1@v0.29.6/model/dkg/dkg.go (about) 1 package dkg 2 3 import ( 4 "github.com/onflow/flow-go/crypto" 5 ) 6 7 // DKGData represents all the output data from the DKG process, including private information. 8 // It is used while running the DKG during bootstrapping. 9 type DKGData struct { 10 PrivKeyShares []crypto.PrivateKey 11 PubGroupKey crypto.PublicKey 12 PubKeyShares []crypto.PublicKey 13 }