aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-15 13:25:35 +0000
committerlloyd <[email protected]>2010-10-15 13:25:35 +0000
commit74fe6649c298e34beeacc190f0d557e5421fe79e (patch)
treedb028622d73cdfc3f8ea168e344f52cd7435a55d /src/stream
parent8f90feb2418bd54b4f818ca6e9303c4562abf88d (diff)
More size_t
Diffstat (limited to 'src/stream')
-rw-r--r--src/stream/stream_cipher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream/stream_cipher.h b/src/stream/stream_cipher.h
index 26bbfe160..680d57f70 100644
--- a/src/stream/stream_cipher.h
+++ b/src/stream/stream_cipher.h
@@ -63,9 +63,9 @@ class BOTAN_DLL StreamCipher : public SymmetricAlgorithm
* @param key_max the maximum key size
* @param key_mod the modulo restriction on the key size
*/
- StreamCipher(u32bit key_min,
- u32bit key_max = 0,
- u32bit key_mod = 1) :
+ StreamCipher(size_t key_min,
+ size_t key_max = 0,
+ size_t key_mod = 1) :
SymmetricAlgorithm(key_min, key_max, key_mod) {}
virtual ~StreamCipher() {}