diff options
Diffstat (limited to 'include/turing.h')
-rw-r--r-- | include/turing.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/turing.h b/include/turing.h index 1f31eea2d..14b2e6fd6 100644 --- a/include/turing.h +++ b/include/turing.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Turing * *************************************************/ -class Turing : public StreamCipher +class BOTAN_DLL Turing : public StreamCipher { public: void clear() throw(); @@ -31,7 +31,8 @@ class Turing : public StreamCipher const MemoryRegion<u32bit>&); static const u32bit Q_BOX[256]; - static const byte SBOX[256], OFFSETS[272]; + static const byte SBOX[256]; + static const byte OFFSETS[272]; SecureBuffer<u32bit, 256> S0, S1, S2, S3; SecureBuffer<u32bit, 17> R; |