diff options
Diffstat (limited to 'src/stream/turing/turing.cpp')
-rw-r--r-- | src/stream/turing/turing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/turing/turing.cpp b/src/stream/turing/turing.cpp index df0d3f5e8..bdf320364 100644 --- a/src/stream/turing/turing.cpp +++ b/src/stream/turing/turing.cpp @@ -237,7 +237,7 @@ void Turing::gen_sbox(MemoryRegion<u32bit>& S, u32bit which, /************************************************* * Turing Key Schedule * *************************************************/ -void Turing::key(const byte key[], u32bit length) +void Turing::key_schedule(const byte key[], u32bit length) { K.create(length / 4); for(u32bit j = 0; j != length; ++j) |