-
Notifications
You must be signed in to change notification settings - Fork 179
/
seed.go
43 lines (36 loc) · 1.51 KB
/
seed.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package seed
import (
"fmt"
"github.com/onflow/flow-go/consensus/hotstuff/model"
"github.com/onflow/flow-go/crypto"
"github.com/onflow/flow-go/crypto/hash"
"github.com/onflow/flow-go/crypto/random"
)
// PRGFromRandomSource returns a PRG seeded by the source of randomness of the protocol.
// The customizer is used to generate a task-specific PRG (customizer in this implementation
// is up to 12-bytes long).
//
// The function hashes the input random source to obtain the PRG seed.
// Hashing is required to uniformize the entropy over the output.
func PRGFromRandomSource(randomSource []byte, customizer []byte) (random.Rand, error) {
// hash the source of randomness (signature) to uniformize the entropy
var seed [hash.HashLenSHA3_256]byte
hash.ComputeSHA3_256(&seed, randomSource)
// create random number generator from the seed and customizer
rng, err := random.NewChacha20PRG(seed[:], customizer)
if err != nil {
return nil, fmt.Errorf("could not create ChaCha20 PRG: %w", err)
}
return rng, nil
}
const RandomSourceLength = crypto.SignatureLenBLSBLS12381
// FromParentQCSignature extracts the source of randomness from the given QC sigData.
// The sigData is an RLP encoded structure that is part of QuorumCertificate.
func FromParentQCSignature(sigData []byte) ([]byte, error) {
// unpack sig data to extract random beacon sig
randomBeaconSig, err := model.UnpackRandomBeaconSig(sigData)
if err != nil {
return nil, fmt.Errorf("could not unpack block signature: %w", err)
}
return randomBeaconSig, nil
}