From 408ea0a9b8ed0f575f8ee26891473920b42ef026 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Mon, 21 Sep 2015 12:24:08 -0400 Subject: Address some review comments by Simon. GH #279 --- src/lib/stream/stream_cipher.cpp | 10 +++++----- src/lib/stream/stream_cipher.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/lib/stream') 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 #if defined(BOTAN_HAS_CHACHA) -#include + #include #endif #if defined(BOTAN_HAS_SALSA20) -#include + #include #endif #if defined(BOTAN_HAS_CTR_BE) -#include + #include #endif #if defined(BOTAN_HAS_OFB) -#include + #include #endif #if defined(BOTAN_HAS_RC4) -#include + #include #endif namespace Botan { diff --git a/src/lib/stream/stream_cipher.h b/src/lib/stream/stream_cipher.h index 68c97f1c1..8c9b28147 100644 --- a/src/lib/stream/stream_cipher.h +++ b/src/lib/stream/stream_cipher.h @@ -25,7 +25,7 @@ class BOTAN_DLL StreamCipher : public SymmetricAlgorithm /** * Create an instance based on a name * Will return a null pointer if the algo/provider combination cannot - * be found. If providers is empty then best available is chosen. + * be found. If provider is empty then best available is chosen. */ static std::unique_ptr create(const std::string& algo_spec, const std::string& provider = ""); -- cgit v1.2.3