summaryrefslogtreecommitdiff
path: root/sm3.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-26 02:26:58 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-26 02:26:58 -0500
commit14e631fd8448f56e9ca58642f75dd46331fb4a66 (patch)
treecd7cd467629ff45ce9ce4a083edfa8f750a0850b /sm3.h
parentd19ef1c7169c6150cc470e885b078f4e5500d29f (diff)
downloadcryptopp-git-14e631fd8448f56e9ca58642f75dd46331fb4a66.tar.gz
Update documentation
Diffstat (limited to 'sm3.h')
-rw-r--r--sm3.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sm3.h b/sm3.h
index 5d8ce224..3db88ee4 100644
--- a/sm3.h
+++ b/sm3.h
@@ -5,7 +5,8 @@
//! \file sm3.h
//! \brief Classes for the SM3 hash function
-//! \details SM3 is a Chinese national hash function designed by Xiaoyun Wang, et al.
+//! \details SM3 is a hash function designed by Xiaoyun Wang, et al. The hash is part of the
+//! Chinese State Cryptography Administration portfolio.
//! \sa <A HREF="https://tools.ietf.org/html/draft-shen-sm3-hash">SM3 Hash Function</A> and
//! <A HREF="http://github.com/guanzhi/GmSSL">Reference implementation using OpenSSL</A>.
//! \since Crypto++ 6.0
@@ -20,7 +21,8 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class SM3
//! \brief SM3 hash function
-//! \details SM3 is a Chinese national hash function designed by Xiaoyun Wang, et al.
+//! \details SM3 is a hash function designed by Xiaoyun Wang, et al. The hash is part of the
+//! Chinese State Cryptography Administration portfolio.
//! \sa <A HREF="https://tools.ietf.org/html/draft-shen-sm3-hash">SM3 Hash Function</A>
//! \since Crypto++ 6.0
class SM3 : public IteratedHashWithStaticTransform<word32, BigEndian, 64, 32, SM3, 32, true>