aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/des/desx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/des/desx.h')
-rw-r--r--src/block/des/desx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/des/desx.h b/src/block/des/desx.h
index 5b7f10281..b61ea3cf9 100644
--- a/src/block/des/desx.h
+++ b/src/block/des/desx.h
@@ -27,7 +27,7 @@ class BOTAN_DLL DESX : public BlockCipher
DESX() : BlockCipher(8, 24), K1(8), K2(8) {}
private:
- void key_schedule(const byte[], u32bit);
+ void key_schedule(const byte[], size_t);
SecureVector<byte> K1, K2;
DES des;
};