diff options
author | Jack Lloyd <[email protected]> | 2015-09-21 12:24:08 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-09-21 12:24:08 -0400 |
commit | 408ea0a9b8ed0f575f8ee26891473920b42ef026 (patch) | |
tree | e0c6e3f0cec52bc7389a1d3e6de45bf959960535 /src/lib/stream/stream_cipher.cpp | |
parent | e94e615e528e73f2a9354291d844514b4e1c0636 (diff) |
Address some review comments by Simon. GH #279
Diffstat (limited to 'src/lib/stream/stream_cipher.cpp')
-rw-r--r-- | src/lib/stream/stream_cipher.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/stream/stream_cipher.cpp b/src/lib/stream/stream_cipher.cpp index 91b68b38a..060e65d86 100644 --- a/src/lib/stream/stream_cipher.cpp +++ b/src/lib/stream/stream_cipher.cpp @@ -9,23 +9,23 @@ #include <botan/internal/algo_registry.h> #if defined(BOTAN_HAS_CHACHA) -#include <botan/chacha.h> + #include <botan/chacha.h> #endif #if defined(BOTAN_HAS_SALSA20) -#include <botan/salsa20.h> + #include <botan/salsa20.h> #endif #if defined(BOTAN_HAS_CTR_BE) -#include <botan/ctr.h> + #include <botan/ctr.h> #endif #if defined(BOTAN_HAS_OFB) -#include <botan/ofb.h> + #include <botan/ofb.h> #endif #if defined(BOTAN_HAS_RC4) -#include <botan/rc4.h> + #include <botan/rc4.h> #endif namespace Botan { |