keygendr32/Keygender32/Random.h
2024-03-20 23:09:10 -07:00

7 lines
187 B
C

#pragma once
// Provides a seed for xorrand().
void xorsrand(unsigned int seed);
// Generates a random UINT64 according to the xoshiro256++ PRNG
// algorithm.
UINT64 xorrand(void);