wownero-seed/include/wownero_seed/secure_random.hpp

15 lines
214 B
C++
Raw Normal View History

2020-06-13 19:00:39 +00:00
/*
Copyright (c) 2020 tevador <tevador@gmail.com>
All rights reserved.
*/
#pragma once
#include <cstddef>
#include <cstdint>
class secure_random {
public:
static void gen_bytes(void* output, size_t size);
};