diff options
Diffstat (limited to 'src/pbe')
-rw-r--r-- | src/pbe/pbes1/pbes1.h | 2 | ||||
-rw-r--r-- | src/pbe/pbes2/pbes2.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pbe/pbes1/pbes1.h b/src/pbe/pbes1/pbes1.h index dd991a515..e10cbbb53 100644 --- a/src/pbe/pbes1/pbes1.h +++ b/src/pbe/pbes1/pbes1.h @@ -51,7 +51,7 @@ class BOTAN_DLL PBE_PKCS5v15 : public PBE HashFunction* hash_function; SecureVector<byte> salt, key, iv; - u32bit iterations; + size_t iterations; Pipe pipe; }; diff --git a/src/pbe/pbes2/pbes2.h b/src/pbe/pbes2/pbes2.h index 1c7119e3a..7b82980e5 100644 --- a/src/pbe/pbes2/pbes2.h +++ b/src/pbe/pbes2/pbes2.h @@ -59,7 +59,7 @@ class BOTAN_DLL PBE_PKCS5v20 : public PBE BlockCipher* block_cipher; HashFunction* hash_function; SecureVector<byte> salt, key, iv; - u32bit iterations, key_length; + size_t iterations, key_length; Pipe pipe; }; |