diff options
Diffstat (limited to 'src/lib/modes/aead/aead.cpp')
-rw-r--r-- | src/lib/modes/aead/aead.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/modes/aead/aead.cpp b/src/lib/modes/aead/aead.cpp index 600e0eb18..1e66dbd43 100644 --- a/src/lib/modes/aead/aead.cpp +++ b/src/lib/modes/aead/aead.cpp @@ -9,27 +9,27 @@ #include <botan/lookup.h> #if defined(BOTAN_HAS_AEAD_CCM) -#include <botan/ccm.h> + #include <botan/ccm.h> #endif #if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305) -#include <botan/chacha20poly1305.h> + #include <botan/chacha20poly1305.h> #endif #if defined(BOTAN_HAS_AEAD_EAX) -#include <botan/eax.h> + #include <botan/eax.h> #endif #if defined(BOTAN_HAS_AEAD_GCM) -#include <botan/gcm.h> + #include <botan/gcm.h> #endif #if defined(BOTAN_HAS_AEAD_OCB) -#include <botan/ocb.h> + #include <botan/ocb.h> #endif #if defined(BOTAN_HAS_AEAD_SIV) -#include <botan/siv.h> + #include <botan/siv.h> #endif namespace Botan { |