aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream/stream_cipher.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-16 03:22:08 +0000
committerlloyd <[email protected]>2010-06-16 03:22:08 +0000
commit59fed0e232008a3ff42a70d0f3ecbe0b65104c76 (patch)
tree503813a3aa6333d07bc644b63e1787a2038d1352 /src/stream/stream_cipher.h
parent46086387b45c713a11001d8d037ffd280f5c56c3 (diff)
Move a couple of StreamCipher functions to a source file to avoid the
Doxygen vs GCC problem.
Diffstat (limited to 'src/stream/stream_cipher.h')
-rw-r--r--src/stream/stream_cipher.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/stream/stream_cipher.h b/src/stream/stream_cipher.h
index 4ce5cb1a4..580fa85e2 100644
--- a/src/stream/stream_cipher.h
+++ b/src/stream/stream_cipher.h
@@ -39,19 +39,13 @@ class BOTAN_DLL StreamCipher : public SymmetricAlgorithm
* @param iv the initialization vector
* @param iv_len the length of the IV in bytes
*/
- virtual void set_iv(const byte iv[], u32bit iv_len)
- {
- if(iv_len)
- throw Invalid_Argument("The stream cipher " + name() +
- " does not support resyncronization");
- }
+ virtual void set_iv(const byte iv[], u32bit iv_len);
/**
* @param iv_len the length of the IV in bytes
* @return if the length is valid for this algorithm
*/
- virtual bool valid_iv_length(u32bit iv_len) const
- { return (iv_len == 0); }
+ virtual bool valid_iv_length(u32bit iv_len) const;
/**
* Get a new object representing the same algorithm as *this