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.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/stream/turing/turing.h b/src/stream/turing/turing.h
index 92c5083a4..c0b11fd7b 100644
--- a/src/stream/turing/turing.h
+++ b/src/stream/turing/turing.h
@@ -27,7 +27,12 @@ class BOTAN_DLL Turing : public StreamCipher
void clear();
std::string name() const { return "Turing"; }
StreamCipher* clone() const { return new Turing; }
- Turing() : StreamCipher(4, 32, 4) { position = 0; }
+
+ Turing() : StreamCipher(4, 32, 4),
+ S0(256), S1(256), S2(256), S3(256),
+ R(17), buffer(340)
+ { position = 0; }
+
private:
void key_schedule(const byte[], u32bit);
void generate();
@@ -37,10 +42,10 @@ class BOTAN_DLL Turing : public StreamCipher
static const u32bit Q_BOX[256];
static const byte SBOX[256];
- SecureVector<u32bit, 256> S0, S1, S2, S3;
- SecureVector<u32bit, 17> R;
+ SecureVector<u32bit> S0, S1, S2, S3;
+ SecureVector<u32bit> R;
SecureVector<u32bit> K;
- SecureVector<byte, 340> buffer;
+ SecureVector<byte> buffer;
u32bit position;
};