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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/turing/turing.h b/src/stream/turing/turing.h
index 19d151fca..f9b4460ef 100644
--- a/src/stream/turing/turing.h
+++ b/src/stream/turing/turing.h
@@ -19,7 +19,7 @@ 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); }