Fixes missing entropy in the uuid package.
math/crypto is seeded with 1 and thus will create predictable UUIDs. Because amazon-instance and amazon-ebs in the same second when building both targets the timestamp in front doesn't help either. See #552
This commit is contained in:
parent
5b1463f77b
commit
fa0a0a895f
|
@ -2,17 +2,26 @@ package uuid
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"math/rand"
|
||||
"crypto/rand"
|
||||
"encoding/binary"
|
||||
"time"
|
||||
)
|
||||
|
||||
func uint32rand() (value uint32) {
|
||||
err := binary.Read(rand.Reader, binary.LittleEndian, &value)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// Generates a time ordered UUID. Top 32 bits are a timestamp,
|
||||
// bottom 96 are random.
|
||||
func TimeOrderedUUID() string {
|
||||
unix := uint32(time.Now().UTC().Unix())
|
||||
rand1 := rand.Uint32()
|
||||
rand2 := rand.Uint32()
|
||||
rand3 := rand.Uint32()
|
||||
rand1 := uint32rand()
|
||||
rand2 := uint32rand()
|
||||
rand3 := uint32rand()
|
||||
return fmt.Sprintf("%08x-%04x-%04x-%04x-%04x%08x",
|
||||
unix,
|
||||
uint16(rand1>>16),
|
||||
|
|
Loading…
Reference in New Issue