summaryrefslogtreecommitdiff
path: root/poly1305.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-02-21 12:59:20 -0500
committerJeffrey Walton <noloader@gmail.com>2017-02-21 12:59:20 -0500
commit62f92dd592a1685e7fee99165ec9350aee368c37 (patch)
tree81444e353f7b525321dc6fd841682f271fad674f /poly1305.h
parent8c20630c2d693ef3ebd4209d111d05e18337521e (diff)
downloadcryptopp-git-62f92dd592a1685e7fee99165ec9350aee368c37.tar.gz
Change next version from 5.7 to 6.0
Crypto++ 5.7 was the increment after the 5.6.5 release. Crypto++ 6.0 accurately reflects compatibility
Diffstat (limited to 'poly1305.h')
-rw-r--r--poly1305.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/poly1305.h b/poly1305.h
index 7e5d9f6b..773bd27d 100644
--- a/poly1305.h
+++ b/poly1305.h
@@ -39,7 +39,7 @@
//! \sa Daniel J. Bernstein <A HREF="http://cr.yp.to/mac/poly1305-20050329.pdf">The Poly1305-AES
//! Message-Authentication Code (20050329)</A> and Andy Polyakov <A
//! HREF="http://www.openssl.org/blog/blog/2016/02/15/poly1305-revised/">Poly1305 Revised</A>
-//! \since Crypto++ 5.7
+//! \since Crypto++ 6.0
#ifndef CRYPTOPP_POLY1305_H
#define CRYPTOPP_POLY1305_H
@@ -55,7 +55,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class Poly1305_Base
//! \brief Poly1305 message authentication code base class
//! \tparam T class derived from BlockCipherDocumentation with 16-byte key and 16-byte blocksize
-//! \since Crypto++ 5.7
+//! \since Crypto++ 6.0
template <class T>
class CRYPTOPP_NO_VTABLE Poly1305_Base : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 16>, public MessageAuthenticationCode
{
@@ -141,7 +141,7 @@ protected:
//! \sa Daniel J. Bernstein <A HREF="http://cr.yp.to/mac/poly1305-20050329.pdf">The Poly1305-AES
//! Message-Authentication Code (20050329)</A> and Andy Polyakov <A
//! HREF="http://www.openssl.org/blog/blog/2016/02/15/poly1305-revised/">Poly1305 Revised</A>
-//! \since Crypto++ 5.7
+//! \since Crypto++ 6.0
template <class T>
class Poly1305 : public MessageAuthenticationCodeFinal<Poly1305_Base<T> >
{