1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-17 22:57:46 +00:00
astra/launcher/include/crtrand.h
Joshua Goins 3d39887d9c Add function to encrypt steam tickets
I also added unit tests to verify this works exactly 1-to-1 to
XIVQuickLauncher's implementation. The next step is hooking up all of
our things together!
2025-05-04 15:27:10 -04:00

14 lines
149 B
C++

#pragma once
#include <cstdint>
class CrtRand
{
public:
explicit CrtRand(uint32_t seed);
uint32_t next();
private:
uint32_t seed;
};