|
#ifndef OPOW_CRYPTO_XOSHIRO256PP_H
|
|
#define OPOW_CRYPTO_XOSHIRO256PP_H
|
|
|
|
#include <stdint.h>
|
|
#include "uint256.h"
|
|
|
|
|
|
typedef struct class_XoShiRo256PlusPlus XoShiRo256PlusPlus_t;
|
|
struct class_XoShiRo256PlusPlus{
|
|
uint64_t s[4];
|
|
};
|
|
|
|
|
|
|
|
#endif //OPOW_CRYPTO_XOSHIRO256PP_H
|