aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream/turing/turing.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-09 15:57:31 +0000
committerlloyd <[email protected]>2008-11-09 15:57:31 +0000
commita02b8a6dcebfa285e42a6a7010735dfdf7b47ac0 (patch)
tree57899ab98328aea62d6d665a38638e112697ff5a /src/stream/turing/turing.h
parentc604f94ec71cb520580c6fcf9257560bb7c053c5 (diff)
Rename SymmetricAlgorithm::key to key_schedule to avoid many name
conflicts/collisions
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 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();