diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 16:13:20 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 16:13:20 -0400 |
commit | 5cd468130eb73635daf598292523df787904a47d (patch) | |
tree | e2bde06c75004e9e2958f05c5785d497e4095a26 /src/lib/pubkey/ecies | |
parent | 5d48c1406a956496fd4a020263ee59fbe7fad90a (diff) |
More include header cleanups
Diffstat (limited to 'src/lib/pubkey/ecies')
-rw-r--r-- | src/lib/pubkey/ecies/ecies.cpp | 1 | ||||
-rw-r--r-- | src/lib/pubkey/ecies/ecies.h | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pubkey/ecies/ecies.cpp b/src/lib/pubkey/ecies/ecies.cpp index d1edf058c..e295efbef 100644 --- a/src/lib/pubkey/ecies/ecies.cpp +++ b/src/lib/pubkey/ecies/ecies.cpp @@ -9,6 +9,7 @@ #include <botan/ecies.h> #include <botan/numthry.h> #include <botan/cipher_mode.h> +#include <botan/mac.h> #include <botan/internal/ct_utils.h> #include <botan/internal/pk_ops_impl.h> diff --git a/src/lib/pubkey/ecies/ecies.h b/src/lib/pubkey/ecies/ecies.h index 0e3229cdc..382147db2 100644 --- a/src/lib/pubkey/ecies/ecies.h +++ b/src/lib/pubkey/ecies/ecies.h @@ -10,9 +10,7 @@ #include <botan/ecdh.h> #include <botan/ec_group.h> -#include <botan/kdf.h> #include <botan/cipher_mode.h> -#include <botan/mac.h> #include <botan/point_gfp.h> #include <botan/pubkey.h> #include <botan/secmem.h> @@ -24,6 +22,7 @@ namespace Botan { +class MessageAuthenticationCode; class RandomNumberGenerator; enum class ECIES_Flags : uint32_t |