refactor: clean up word list generator

This commit is contained in:
Michael Mandl 2024-03-20 16:51:46 +01:00
parent 6ba52ab73f
commit 7f18d0d6cc
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 10 additions and 11 deletions

View file

@ -8,5 +8,6 @@ private:
static const std::string charset_;
public:
std::vector<std::string> generate();
WordListGenerator() = delete;
static std::vector<std::string> generate(const size_t multiplier = 1);
};