This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
fortuna/generator.h
surtur b55ca33e24
All checks were successful
continuous-integration/drone/push Build is passing
chore(fortuna): add random_data() checks, batch 1
2021-12-12 06:14:58 +01:00

52 lines
1.1 KiB
C++

#ifndef FORTUNA_GENERATOR_H
#define FORTUNA_GENERATOR_H
#include <cryptopp/cryptlib.h>
#include <cryptopp/secblock.h>
#include <string>
namespace fortuna {
namespace generator {
class Generator {
public:
std::chrono::milliseconds reseed_interval{100};
Generator(); // ad noexcept: perhaps _do_ throw*
~Generator() noexcept;
/* n is the number of random bytes to generate */
auto generate_random_data(uint n) -> std::string;
private:
struct G_state {
// 32*8
static constexpr const std::size_t k_length{32};
CryptoPP::FixedSizeSecBlock<CryptoPP::byte, k_length> k;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
unsigned __int128 ctr;
#pragma GCC diagnostic pop
};
G_state G;
void initialize_generator();
auto reseed(const std::string& s) -> void;
auto do_sha(const std::string& k_n_s) -> std::string;
auto do_crypto() -> std::string;
auto generate_blocks(unsigned int k_blocks) -> std::string;
protected:
auto get_state() -> Generator::G_state;
}; // class generator
} //namespace generator
} //namespace fortuna
#endif//FORTUNA_GENERATOR_H