aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/aead.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/modes/aead/aead.cpp')
-rw-r--r--src/lib/modes/aead/aead.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/lib/modes/aead/aead.cpp b/src/lib/modes/aead/aead.cpp
index 9ad550ffd..d8aa762ac 100644
--- a/src/lib/modes/aead/aead.cpp
+++ b/src/lib/modes/aead/aead.cpp
@@ -6,7 +6,7 @@
#include <botan/aead.h>
#include <botan/scan_name.h>
-#include <botan/parsing.h>
+#include <botan/internal/parsing.h>
#include <sstream>
#if defined(BOTAN_HAS_BLOCK_CIPHER)
@@ -14,27 +14,27 @@
#endif
#if defined(BOTAN_HAS_AEAD_CCM)
- #include <botan/ccm.h>
+ #include <botan/internal/ccm.h>
#endif
#if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305)
- #include <botan/chacha20poly1305.h>
+ #include <botan/internal/chacha20poly1305.h>
#endif
#if defined(BOTAN_HAS_AEAD_EAX)
- #include <botan/eax.h>
+ #include <botan/internal/eax.h>
#endif
#if defined(BOTAN_HAS_AEAD_GCM)
- #include <botan/gcm.h>
+ #include <botan/internal/gcm.h>
#endif
#if defined(BOTAN_HAS_AEAD_OCB)
- #include <botan/ocb.h>
+ #include <botan/internal/ocb.h>
#endif
#if defined(BOTAN_HAS_AEAD_SIV)
- #include <botan/siv.h>
+ #include <botan/internal/siv.h>
#endif
namespace Botan {
@@ -171,6 +171,4 @@ std::unique_ptr<AEAD_Mode> AEAD_Mode::create(const std::string& algo,
return std::unique_ptr<AEAD_Mode>();
}
-
-
}