diff options
author | lloyd <[email protected]> | 2010-10-13 00:57:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 00:57:17 +0000 |
commit | 60fb91d8cb1710d07041f76050d24229ce91131b (patch) | |
tree | e01b2dd987e0f3fca2ec3fcb4a3533825f1b5ee3 /src | |
parent | 6e706bfefa04fc28d6c204442ca45982993dc550 (diff) |
size_t
Diffstat (limited to 'src')
-rw-r--r-- | src/block/serpent_ia32/serp_ia32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/serpent_ia32/serp_ia32.cpp b/src/block/serpent_ia32/serp_ia32.cpp index 28a605d12..6e409b580 100644 --- a/src/block/serpent_ia32/serp_ia32.cpp +++ b/src/block/serpent_ia32/serp_ia32.cpp @@ -44,7 +44,7 @@ void botan_serpent_ia32_key_schedule(u32bit ks[140]); /* * Serpent Encryption */ -void Serpent_IA32::encrypt_n(const byte in[], byte out[], u32bit blocks) const +void Serpent_IA32::encrypt_n(const byte in[], byte out[], size_t blocks) const { for(size_t i = 0; i != blocks; ++i) { |