random: Use unmodified SFC64.

This commit is contained in:
Nicholas J. Kain 2023-06-24 01:05:09 -04:00
parent 98e0ca3f6f
commit 219443ba7a
No known key found for this signature in database
1 changed files with 2 additions and 5 deletions

View File

@ -1,11 +1,9 @@
// Copyright 2013-2022 Nicholas J. Kain <njkain at gmail dot com>
// Copyright 2013-2023 Nicholas J. Kain <njkain at gmail dot com>
// SPDX-License-Identifier: MIT
#include <stdint.h>
#include "nk/hwrng.h"
#include "nk/random.h"
// SFC64 modified to use a Weyl counter.
void nk_random_init(struct nk_random_state *s)
{
nk_hwrng_bytes(s->seed, sizeof(uint64_t) * 3);
@ -19,8 +17,7 @@ static inline uint64_t rotl64(const uint64_t x, int k) {
uint64_t nk_random_u64(struct nk_random_state *s)
{
const uint64_t t = (s->seed[0] + s->seed[1]) ^ s->seed[3];
s->seed[3] += 0x6a09e667a7541669ull;
const uint64_t t = s->seed[0] + s->seed[1] + s->seed[3]++;
s->seed[0] = s->seed[1] ^ (s->seed[1] >> 11);
s->seed[1] = s->seed[2] + (s->seed[2] << 3);
s->seed[2] = rotl64(s->seed[2], 24) + t;