diff options
Diffstat (limited to 'src/block/xtea/xtea.h')
-rw-r--r-- | src/block/xtea/xtea.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/xtea/xtea.h b/src/block/xtea/xtea.h index 6a843e21f..c870f588a 100644 --- a/src/block/xtea/xtea.h +++ b/src/block/xtea/xtea.h @@ -33,7 +33,7 @@ class BOTAN_DLL XTEA : public BlockCipher const SecureVector<u32bit>& get_EK() const { return EK; } private: - void key_schedule(const byte[], u32bit); + void key_schedule(const byte[], size_t); SecureVector<u32bit> EK; }; |