Files
csprng_test/common.h
T
2026-06-15 10:31:58 +02:00

22 lines
319 B
C

#ifndef H_COMMON
#define H_COMMON
struct prng{
unsigned int p;
unsigned int q;
unsigned long long seed;
unsigned long long output;
} /*__attribute__((packed))*/;
#define CSPRNG_VERS 0x1
/* Define all commandes */
#define CSPRNG_CMD_GET_RNG 0x10
struct cmd{
int version;
int cmd;
};
#endif