talos/pkg/startup/rand.go
Noel Georgi ed5af3f780
chore: bump deps
Bump Go to 1.20.1
Bump containerd to 1.6.18
Bump kernel to 6.1.12
Bump go deps and enable renovate updates for markdown lint tools.

Signed-off-by: Noel Georgi <git@frezbo.dev>
2023-02-16 19:08:57 +05:30

26 lines
577 B
Go

// 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/.
package startup
import (
cryptorand "crypto/rand"
"encoding/binary"
"fmt"
"math/rand"
)
// RandSeed default math/rand PRNG.
func RandSeed() error {
seed := make([]byte, 8)
if _, err := cryptorand.Read(seed); err != nil {
return fmt.Errorf("error seeding rand: %w", err)
}
// nolint:staticcheck
rand.Seed(int64(binary.LittleEndian.Uint64(seed)))
return nil
}