summaryrefslogtreecommitdiff
path: root/cryptlib.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-06 22:12:15 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-06 22:12:15 -0400
commit71cc002fd5564750676d948287f04d4ad2910ec4 (patch)
tree7142857e567c0c2937822b47028647c194f12c96 /cryptlib.h
parent6d1bb00b056639237290dd6fdff0eedc144528db (diff)
downloadcryptopp-git-71cc002fd5564750676d948287f04d4ad2910ec4.tar.gz
Update documentation
Diffstat (limited to 'cryptlib.h')
-rw-r--r--cryptlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cryptlib.h b/cryptlib.h
index aa6197e0..1dcc9f50 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -588,7 +588,7 @@ public:
/// \brief Provides the name of this algorithm
/// \return the standard algorithm name
- /// \details The standard algorithm name can be a name like <tt>AES<tt> or <tt>AES/GCM</tt>.
+ /// \details The standard algorithm name can be a name like <tt>AES</tt> or <tt>AES/GCM</tt>.
/// Some algorithms do not have standard names yet. For example, there is no standard
/// algorithm name for Shoup's ECIES.
/// \note AlgorithmName is not universally implemented yet.
@@ -608,6 +608,7 @@ public:
/// dominant one. For example on x86 <tt>AES/GCM</tt> returns "AESNI" rather than
/// "CLMUL" or "AES+SSE4.1" or "AES+CLMUL" or "AES+SSE4.1+CLMUL".
/// \note Provider is not universally implemented yet.
+ /// \since Crypto++ 7.1
virtual std::string AlgorithmProvider() const {return "C++";}
};