diff options
Diffstat (limited to 'src/stream/turing/turing.h')
-rw-r--r-- | src/stream/turing/turing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/turing/turing.h b/src/stream/turing/turing.h index f50fd9370..018196fd3 100644 --- a/src/stream/turing/turing.h +++ b/src/stream/turing/turing.h @@ -22,7 +22,7 @@ class BOTAN_DLL Turing : public StreamCipher Turing() : StreamCipher(4, 32, 4) { position = 0; } private: void cipher(const byte[], byte[], u32bit); - void key(const byte[], u32bit); + void key_schedule(const byte[], u32bit); void resync(const byte[], u32bit); void generate(); |