aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/aead.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-09-21 12:24:08 -0400
committerJack Lloyd <[email protected]>2015-09-21 12:24:08 -0400
commit408ea0a9b8ed0f575f8ee26891473920b42ef026 (patch)
treee0c6e3f0cec52bc7389a1d3e6de45bf959960535 /src/lib/modes/aead/aead.cpp
parente94e615e528e73f2a9354291d844514b4e1c0636 (diff)
Address some review comments by Simon. GH #279
Diffstat (limited to 'src/lib/modes/aead/aead.cpp')
-rw-r--r--src/lib/modes/aead/aead.cpp12
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 {