diff options
Diffstat (limited to 'src/lib/stream')
-rw-r--r-- | src/lib/stream/stream_cipher.cpp | 10 | ||||
-rw-r--r-- | src/lib/stream/stream_cipher.h | 2 |
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 = ""); |