aboutsummaryrefslogtreecommitdiffstats
path: root/include/safer_sk.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/safer_sk.h')
-rw-r--r--include/safer_sk.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/safer_sk.h b/include/safer_sk.h
index a7d9017ee..1bc65e2f7 100644
--- a/include/safer_sk.h
+++ b/include/safer_sk.h
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* SAFER-SK *
*************************************************/
-class SAFER_SK : public BlockCipher
+class BOTAN_DLL SAFER_SK : public BlockCipher
{
public:
void clear() throw() { EK.clear(); }
@@ -24,7 +24,11 @@ class SAFER_SK : public BlockCipher
void enc(const byte[], byte[]) const;
void dec(const byte[], byte[]) const;
void key(const byte[], u32bit);
- static const byte EXP[256], LOG[512], BIAS[208], KEY_INDEX[208];
+
+ static const byte EXP[256];
+ static const byte LOG[512];
+ static const byte BIAS[208];
+ static const byte KEY_INDEX[208];
SecureVector<byte> EK;
const u32bit ROUNDS;
};