diff options
Diffstat (limited to 'src/block/safer')
-rw-r--r-- | src/block/safer/safer_sk.cpp | 2 | ||||
-rw-r--r-- | src/block/safer/safer_sk.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/block/safer/safer_sk.cpp b/src/block/safer/safer_sk.cpp index d64c37f00..f78e326e4 100644 --- a/src/block/safer/safer_sk.cpp +++ b/src/block/safer/safer_sk.cpp @@ -89,7 +89,7 @@ void SAFER_SK::decrypt_n(const byte in[], byte out[], size_t blocks) const /* * SAFER-SK Key Schedule */ -void SAFER_SK::key_schedule(const byte key[], u32bit) +void SAFER_SK::key_schedule(const byte key[], size_t) { SecureVector<byte> KB(18); diff --git a/src/block/safer/safer_sk.h b/src/block/safer/safer_sk.h index b68cb5363..a64d09fb7 100644 --- a/src/block/safer/safer_sk.h +++ b/src/block/safer/safer_sk.h @@ -31,7 +31,7 @@ class BOTAN_DLL SAFER_SK : public BlockCipher */ SAFER_SK(size_t rounds); private: - void key_schedule(const byte[], u32bit); + void key_schedule(const byte[], size_t); static const byte EXP[256]; static const byte LOG[512]; |