summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Doxyfile3
-rw-r--r--cryptlib.h4
-rw-r--r--scrypt.h4
3 files changed, 6 insertions, 5 deletions
diff --git a/Doxyfile b/Doxyfile
index bc6b66b9..a168e7af 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -1512,7 +1512,8 @@ SEARCHENGINE = YES
# Enabled by JW for server-side search, Aug 2018
# https://www.stack.nl/~dimitri/doxygen/manual/searching.html
-SERVER_BASED_SEARCH = YES
+# SERVER_BASED_SEARCH = YES
+SERVER_BASED_SEARCH = NO
# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
# script for searching. Instead the search results are written to an XML file
diff --git a/cryptlib.h b/cryptlib.h
index 0c42959d..c90ffd2a 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -1435,7 +1435,7 @@ public:
};
/// \brief Interface for key derivation functions
-/// \since Crypto++ 6.2
+/// \since Crypto++ 7.0
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE KeyDerivationFunction : public Algorithm
{
public:
@@ -1499,7 +1499,7 @@ protected:
};
/// \brief Interface for password based key derivation functions
-/// \since Crypto++ 6.2
+/// \since Crypto++ 7.0
struct PasswordBasedKeyDerivationFunction : public KeyDerivationFunction
{
};
diff --git a/scrypt.h b/scrypt.h
index fa35e65e..129c5dc3 100644
--- a/scrypt.h
+++ b/scrypt.h
@@ -8,7 +8,7 @@
/// <A HREF="https://www.tarsnap.com/scrypt.html">The scrypt key derivation function</A>
/// and <A HREF="https://tools.ietf.org/html/rfc7914">RFC 7914, The scrypt Password-Based
/// Key Derivation Function</A>
-/// \since Crypto++ 6.2
+/// \since Crypto++ 7.0
#ifndef CRYPTOPP_SCRYPT_H
#define CRYPTOPP_SCRYPT_H
@@ -29,7 +29,7 @@ NAMESPACE_BEGIN(CryptoPP)
/// <A HREF="https://www.tarsnap.com/scrypt.html">The scrypt key derivation function</A>
/// and <A HREF="https://tools.ietf.org/html/rfc7914">RFC 7914, The scrypt Password-Based
/// Key Derivation Function</A>
-/// \since Crypto++ 6.2
+/// \since Crypto++ 7.0
class Scrypt : public KeyDerivationFunction
{
public: