Move PasswordBasedKeyDerivationFunction to cryptlib.h

pull/640/head
Jeffrey Walton 2018-04-07 08:14:22 -04:00
parent 4120e3a53f
commit cd8c03c816
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 6 additions and 4 deletions

View File

@ -1475,6 +1475,12 @@ protected:
void ThrowIfInvalidDerivedLength(size_t length) const;
};
/// \brief Interface for password based key derivation functions
/// \since Crypto++ 6.2
struct PasswordBasedKeyDerivationFunction : public KeyDerivationFunction
{
};
/// \brief Random Number Generator that does not produce random numbers
/// \return reference that can be passed to functions that require a RandomNumberGenerator
/// \details NullRNG() returns a reference that can be passed to functions that require a

View File

@ -16,10 +16,6 @@
NAMESPACE_BEGIN(CryptoPP)
struct PasswordBasedKeyDerivationFunction : public KeyDerivationFunction
{
};
// ******************** PBKDF1 ********************
/// \brief PBKDF1 from PKCS #5