send entropy in packets, validate entropy in received ACKs

This commit is contained in:
Marten Seemann 2016-04-17 14:21:36 +07:00
parent 922a2975e8
commit 1097698c4b
3 changed files with 57 additions and 7 deletions

View file

@ -2,6 +2,7 @@ package utils
import (
"bytes"
"crypto/rand"
"io"
)
@ -123,6 +124,20 @@ func Min(a, b int) int {
return b
}
// RandomBit returns a cryptographically secure random bit (encoded as true / false)
func RandomBit() (bool, error) {
// ToDo: it's probably more efficient to read a bigger slice of random numbers at once and to cache them somewhere
b := make([]byte, 1)
_, err := rand.Read(b)
if err != nil {
return false, err
}
if uint8(b[0])%2 == 0 {
return false, nil
}
return true, nil
}
// Uint32Slice attaches the methods of sort.Interface to []uint32, sorting in increasing order.
type Uint32Slice []uint32