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 2cd8345c4e
All checks were successful
continuous-integration/drone/push Build is passing
refactor: use HexEncoder's built-in lowercase
remove the custom-defined strtolowerpls from generator
2021-11-14 22:23:50 +01:00

34 lines
685 B
C++

#ifndef FORTUNA_GENERATOR_H
#define FORTUNA_GENERATOR_H
#include <string>
namespace fortuna {
namespace generator {
class Generator {
public:
void initialize_generator();
auto generate_blocks(unsigned int k_blocks) -> std::string;
private:
struct G_state;
auto reseed(const std::string& s) -> void;
auto do_sha(const std::string& k_n_s) -> std::string;
auto do_crypto(int64_t k, unsigned __int128 ctr) -> std::string;
/* n is the number of random bytes to generate */
auto generate_random_data(uint n) -> std::string;
protected:
auto get_state() -> Generator::G_state;
}; // class generator
} //namespace generator
} //namespace fortuna
#endif//FORTUNA_GENERATOR_H