aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream/turing/turing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream/turing/turing.h')
-rw-r--r--src/stream/turing/turing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream/turing/turing.h b/src/stream/turing/turing.h
index 19d151fca..92c5083a4 100644
--- a/src/stream/turing/turing.h
+++ b/src/stream/turing/turing.h
@@ -12,14 +12,14 @@
namespace Botan {
-/*
+/**
* Turing
*/
class BOTAN_DLL Turing : public StreamCipher
{
public:
void cipher(const byte in[], byte out[], u32bit length);
- void set_iv(const byte[], u32bit);
+ void set_iv(const byte iv[], u32bit iv_length);
bool valid_iv_length(u32bit iv_len) const
{ return (iv_len % 4 == 0 && iv_len <= 16); }