Copied TCP impl from other project, basic Block implementation, randomx pow, signing via secp256k1
This commit is contained in:
14
include/numgen.h
Normal file
14
include/numgen.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef NUMGEN_H
|
||||
#define NUMGEN_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
unsigned char random_byte(void);
|
||||
uint16_t random_two_byte(void);
|
||||
uint32_t random_four_byte(void);
|
||||
uint64_t random_eight_byte(void);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user