diff options
author | Jack Lloyd <[email protected]> | 2015-09-19 07:43:45 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-09-19 07:43:45 -0400 |
commit | e1ae1d68309573134fc1242c3bfb8a8ce0672737 (patch) | |
tree | d4cbfc7b2c1f70d06fa57403f533be5e434c869f /src/lib/stream/stream_cipher.cpp | |
parent | e2e0f8f2b595122c1f8acb3b3a46501f96a2b218 (diff) |
Internal header cleanups
Only user-visible change is the removal of get_byte.h
Diffstat (limited to 'src/lib/stream/stream_cipher.cpp')
-rw-r--r-- | src/lib/stream/stream_cipher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/stream/stream_cipher.cpp b/src/lib/stream/stream_cipher.cpp index 3b8d35bc7..91b68b38a 100644 --- a/src/lib/stream/stream_cipher.cpp +++ b/src/lib/stream/stream_cipher.cpp @@ -6,7 +6,7 @@ */ #include <botan/stream_cipher.h> -#include <botan/internal/stream_utils.h> +#include <botan/internal/algo_registry.h> #if defined(BOTAN_HAS_CHACHA) #include <botan/chacha.h> @@ -51,11 +51,11 @@ void StreamCipher::set_iv(const byte[], size_t iv_len) } #if defined(BOTAN_HAS_CHACHA) -BOTAN_REGISTER_STREAM_CIPHER_NOARGS(ChaCha); +BOTAN_REGISTER_T_NOARGS(StreamCipher, ChaCha); #endif #if defined(BOTAN_HAS_SALSA20) -BOTAN_REGISTER_STREAM_CIPHER_NOARGS(Salsa20); +BOTAN_REGISTER_T_NOARGS(StreamCipher, Salsa20); #endif #if defined(BOTAN_HAS_CTR_BE) |