aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/cascade/cascade.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/cascade/cascade.h')
-rw-r--r--src/block/cascade/cascade.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/block/cascade/cascade.h b/src/block/cascade/cascade.h
index abd9b015d..5e1989cb6 100644
--- a/src/block/cascade/cascade.h
+++ b/src/block/cascade/cascade.h
@@ -18,8 +18,8 @@ namespace Botan {
class BOTAN_DLL Cascade_Cipher : public BlockCipher
{
public:
- void encrypt_n(const byte in[], byte out[], u32bit blocks) const;
- void decrypt_n(const byte in[], byte out[], u32bit blocks) const;
+ void encrypt_n(const byte in[], byte out[], size_t blocks) const;
+ void decrypt_n(const byte in[], byte out[], size_t blocks) const;
void clear();
std::string name() const;
@@ -34,7 +34,7 @@ class BOTAN_DLL Cascade_Cipher : public BlockCipher
~Cascade_Cipher();
private:
- void key_schedule(const byte[], u32bit);
+ void key_schedule(const byte[], size_t);
BlockCipher* cipher1;
BlockCipher* cipher2;