Files
syncthing-arm/lib/util/random.go
T

60 lines
1.8 KiB
Go
Raw Normal View History

2014-12-07 16:41:24 +01:00
// Copyright (C) 2014 The Syncthing Authors.
//
2015-03-07 21:36:35 +01:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.
2014-12-07 16:41:24 +01:00
package util
2014-12-07 16:41:24 +01:00
import (
"crypto/md5"
cryptoRand "crypto/rand"
"encoding/binary"
"io"
2014-12-07 16:41:24 +01:00
mathRand "math/rand"
)
// randomCharset contains the characters that can make up a randomString().
const randomCharset = "01234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-"
// PredictableRandom is an RNG that will always have the same sequence. It
2014-12-07 16:41:24 +01:00
// will be seeded with the device ID during startup, so that the sequence is
// predictable but varies between instances.
var PredictableRandom = mathRand.New(mathRand.NewSource(42))
2014-12-07 16:41:24 +01:00
func init() {
// The default RNG should be seeded with something good.
mathRand.Seed(RandomInt64())
2014-12-07 16:41:24 +01:00
}
// RandomString returns a string of random characters (taken from
2014-12-07 16:41:24 +01:00
// randomCharset) of the specified length.
func RandomString(l int) string {
2014-12-07 16:41:24 +01:00
bs := make([]byte, l)
for i := range bs {
bs[i] = randomCharset[mathRand.Intn(len(randomCharset))]
}
return string(bs)
}
// RandomInt64 returns a strongly random int64, slowly
func RandomInt64() int64 {
2014-12-07 16:41:24 +01:00
var bs [8]byte
2014-12-08 19:40:38 +01:00
_, err := io.ReadFull(cryptoRand.Reader, bs[:])
if err != nil {
panic("randomness failure: " + err.Error())
2014-12-07 16:41:24 +01:00
}
return SeedFromBytes(bs[:])
2014-12-07 16:41:24 +01:00
}
// SeedFromBytes calculates a weak 64 bit hash from the given byte slice,
2014-12-07 16:41:24 +01:00
// suitable for use a predictable random seed.
func SeedFromBytes(bs []byte) int64 {
2014-12-07 16:41:24 +01:00
h := md5.New()
h.Write(bs)
s := h.Sum(nil)
// The MD5 hash of the byte slice is 16 bytes long. We interpret it as two
// uint64s and XOR them together.
return int64(binary.BigEndian.Uint64(s[0:]) ^ binary.BigEndian.Uint64(s[8:]))
}