summaryrefslogtreecommitdiff
path: root/pwdbased.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-06-19 19:05:50 +0000
committerweidai <weidai11@users.noreply.github.com>2003-06-19 19:05:50 +0000
commit64edb705d8bdbf05d74ed32aeb34790e3d3687ce (patch)
tree5f5e8cc09cd4d071d441e636d9b6320aaf12f1c9 /pwdbased.h
parent376fe5b4ae1607f4158e16bc4ace6e5b5b01154e (diff)
downloadcryptopp-git-64edb705d8bdbf05d74ed32aeb34790e3d3687ce.tar.gz
fix assert
Diffstat (limited to 'pwdbased.h')
-rw-r--r--pwdbased.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pwdbased.h b/pwdbased.h
index 28807046..ec9809d9 100644
--- a/pwdbased.h
+++ b/pwdbased.h
@@ -51,7 +51,7 @@ public:
template <class T>
void PKCS5_PBKDF1<T>::DeriveKey(byte *derived, unsigned int derivedLen, const byte *password, unsigned int passwordLen, const byte *salt, unsigned int saltLen, unsigned int iterations) const
{
- assert(derivedLen <= MaxDerivedLength());
+ assert(derivedLen <= MaxDerivedKeyLength());
assert(iterations > 0);
T hash;