diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
commit | 5d48c1406a956496fd4a020263ee59fbe7fad90a (patch) | |
tree | 4ea0847f71eda94c0ff3a31cfe4167ca2dba8db6 /src/lib/mac/gmac | |
parent | 5cc5e1bd3fac87186f511a48cee9cda86e4607ca (diff) |
Header file cleanups
Some help from include-what-you-use
Diffstat (limited to 'src/lib/mac/gmac')
-rw-r--r-- | src/lib/mac/gmac/gmac.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/mac/gmac/gmac.h b/src/lib/mac/gmac/gmac.h index 64550d2b1..ed586b4ea 100644 --- a/src/lib/mac/gmac/gmac.h +++ b/src/lib/mac/gmac/gmac.h @@ -8,19 +8,15 @@ #ifndef BOTAN_GMAC_H_ #define BOTAN_GMAC_H_ -#include <botan/gcm.h> #include <botan/mac.h> -#include <botan/types.h> -#include <algorithm> +#include <botan/gcm.h> namespace Botan { /** * GMAC */ -class BOTAN_PUBLIC_API(2,0) GMAC : public MessageAuthenticationCode, - public GHASH - +class BOTAN_PUBLIC_API(2,0) GMAC : public MessageAuthenticationCode, public GHASH { public: void clear() override; |