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 f16c630ae7
All checks were successful
continuous-integration/drone/push Build is passing
generator: implement do_sha()
* link against cryptopp
* use both sha2 and sha3 generation functions
* try calling do_sha() directly
* call reseed() that in turn calls do_sha()
* return a bogus number, not the proper digest for now (see TODOs)

cryptopp needed to be installed to archlinux for the valgrind step to
pass successfully
2021-11-11 04:11:40 +01:00

38 lines
720 B
C++

#ifndef FORTUNA_GENERATOR_H
#define FORTUNA_GENERATOR_H
#include <string>
namespace fortuna {
namespace generator {
using namespace std;
class Generator {
public:
void initialize_generator();
auto generate_blocks(unsigned int k_blocks) -> string;
private:
struct G_state;
auto reseed(const string& s) -> void;
auto do_sha(const string& k_n_s) -> string;
auto do_crypto(int64_t k, unsigned __int128 ctr) -> string;
/* 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
} //namespace generator
} //namespace fortuna
#endif//FORTUNA_GENERATOR_H