From 62f92dd592a1685e7fee99165ec9350aee368c37 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 21 Feb 2017 12:59:20 -0500 Subject: 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 --- poly1305.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poly1305.h') 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 The Poly1305-AES //! Message-Authentication Code (20050329) and Andy Polyakov Poly1305 Revised -//! \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 CRYPTOPP_NO_VTABLE Poly1305_Base : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 16>, public MessageAuthenticationCode { @@ -141,7 +141,7 @@ protected: //! \sa Daniel J. Bernstein The Poly1305-AES //! Message-Authentication Code (20050329) and Andy Polyakov Poly1305 Revised -//! \since Crypto++ 5.7 +//! \since Crypto++ 6.0 template class Poly1305 : public MessageAuthenticationCodeFinal > { -- cgit v1.2.1