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

38 lines
723 B
C
Raw Normal View History

2021-10-19 15:05:18 +02:00
#ifndef FORTUNA_GENERATOR_H
#define FORTUNA_GENERATOR_H
#include <string>
2021-10-19 15:05:18 +02:00
namespace fortuna {
namespace generator {
using namespace std;
2021-10-19 15:05:18 +02:00
class Generator {
public:
void initialize_generator();
auto generate_blocks(unsigned int k_blocks) -> string;
2021-10-19 15:05:18 +02:00
private:
struct G_state;
2021-10-24 22:11:29 +02:00
auto reseed(const string& s) -> void;
auto do_sha(int64_t key_with_seed) -> int64_t;
auto do_crypto(int64_t k, unsigned __int128 ctr) -> string;
2021-10-19 15:05:18 +02:00
/* n is the number of random bytes to generate */
auto generate_random_data(uint n) -> string;
auto strtolowerpls(string &s) -> string;
protected:
auto get_state() -> Generator::G_state;
}; // class generator
2021-10-19 15:05:18 +02:00
} //namespace generator
} //namespace fortuna
2021-10-19 15:05:18 +02:00
#endif//FORTUNA_GENERATOR_H