refactor(generator): clean up includes a little
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2021-12-06 00:08:32 +01:00
parent b14600c352
commit 5557f0d9e6
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -1,24 +1,21 @@
#ifndef FORTUNA_GENERATOR_CPP
#define FORTUNA_GENERATOR_CPP
#include "generator.h"
#include <cmath>
#include <cassert>
#include <cstdint>
#include <stdexcept>
#include <cryptopp/hex.h>
#include <cryptopp/filters.h>
#include <cryptopp/sha3.h>
#include <cryptopp/osrng.h>
#include <cryptopp/hex.h>
#include <cryptopp/filters.h>
#include <cryptopp/serpent.h>
#include <cryptopp/sha3.h>
#include <cryptopp/ccm.h>
#include <fmt/core.h>
#include "generator.h"
namespace fortuna {
namespace generator {