aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc5/rc5.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-12 19:41:37 +0000
committerlloyd <[email protected]>2010-10-12 19:41:37 +0000
commitff2210b035a1598bf99e18a578ff075bece8fbe5 (patch)
tree4efe3a23daac9e2cd8b9f2b794d95089ba4cdfb2 /src/block/rc5/rc5.h
parente7e3af16a3540e1d7a84e085aa1ea7c55f627930 (diff)
Use size_t rather than u32bit for the blocks argument of encrypt_n
Diffstat (limited to 'src/block/rc5/rc5.h')
-rw-r--r--src/block/rc5/rc5.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/block/rc5/rc5.h b/src/block/rc5/rc5.h
index 9a794d248..f15230a00 100644
--- a/src/block/rc5/rc5.h
+++ b/src/block/rc5/rc5.h
@@ -18,8 +18,8 @@ namespace Botan {
class BOTAN_DLL RC5 : 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() { zeroise(S); }
std::string name() const;
@@ -29,11 +29,11 @@ class BOTAN_DLL RC5 : public BlockCipher
* @param rounds the number of RC5 rounds to run. Must be between
* 8 and 32 and a multiple of 4.
*/
- RC5(u32bit rounds);
+ RC5(size_t rounds);
private:
void key_schedule(const byte[], u32bit);
SecureVector<u32bit> S;
- const u32bit ROUNDS;
+ const size_t ROUNDS;
};
}