aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/stream
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/stream
parente94e615e528e73f2a9354291d844514b4e1c0636 (diff)
Address some review comments by Simon. GH #279
Diffstat (limited to 'src/lib/stream')
-rw-r--r--src/lib/stream/stream_cipher.cpp10
-rw-r--r--src/lib/stream/stream_cipher.h2
2 files changed, 6 insertions, 6 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 {
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<StreamCipher> create(const std::string& algo_spec,
const std::string& provider = "");