Increment version to 5.7 due to ABI break *Issue 337)
We still need to supply a patch for those maintaining 5.6.xpull/347/head
parent
1491b48691
commit
82009ecf41
|
|
@ -20,8 +20,8 @@ if (NOT CMAKE_CONFIGURATION_TYPES AND
|
|||
endif()
|
||||
|
||||
set(cryptopp_VERSION_MAJOR 5)
|
||||
set(cryptopp_VERSION_MINOR 6)
|
||||
set(cryptopp_VERSION_PATCH 6)
|
||||
set(cryptopp_VERSION_MINOR 7)
|
||||
set(cryptopp_VERSION_PATCH 0)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
include(TestBigEndian)
|
||||
|
|
|
|||
2
Doxyfile
2
Doxyfile
|
|
@ -41,7 +41,7 @@ PROJECT_NAME = Crypto++
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 5.6.6
|
||||
PROJECT_NUMBER = 5.7.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
// ***************** Less Important Settings ***************
|
||||
|
||||
// Library version
|
||||
#define CRYPTOPP_VERSION 566
|
||||
#define CRYPTOPP_VERSION 570
|
||||
|
||||
// Define this if you want to set a prefix for TestData/ and TestVectors/
|
||||
// Be mindful of the trailing slash since its simple concatenation.
|
||||
|
|
|
|||
2
config.h
2
config.h
|
|
@ -63,7 +63,7 @@
|
|||
// ***************** Less Important Settings ***************
|
||||
|
||||
// Library version
|
||||
#define CRYPTOPP_VERSION 566
|
||||
#define CRYPTOPP_VERSION 570
|
||||
|
||||
// Define this if you want to set a prefix for TestData/ and TestVectors/
|
||||
// Be mindful of the trailing slash since its simple concatenation.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
//! \file cryptlib.h
|
||||
//! \brief Abstract base classes that provide a uniform interface to this library.
|
||||
|
||||
/*! \mainpage Crypto++ Library 5.6.6 API Reference
|
||||
/*! \mainpage Crypto++ Library 5.7 API Reference
|
||||
<dl>
|
||||
<dt>Abstract Base Classes<dd>
|
||||
cryptlib.h
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 5,6,6,0
|
||||
PRODUCTVERSION 5,6,6,0
|
||||
FILEVERSION 5,7,0,0
|
||||
PRODUCTVERSION 5,7,0,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
|
|
|||
|
|
@ -389,7 +389,7 @@ struct ECNR : public DL_SS<DL_Keys_EC<EC>, DL_Algorithm_ECNR<EC>, DL_SignatureMe
|
|||
//! \sa DLIES, <a href="http://www.weidai.com/scan-mirror/ca.html#ECIES">Elliptic Curve Integrated Encryption Scheme (ECIES)</a>,
|
||||
//! Martínez, Encinas, and Ávila's <A HREF="http://digital.csic.es/bitstream/10261/32671/1/V2-I2-P7-13.pdf">A Survey of the Elliptic
|
||||
//! Curve Integrated Encryption Schemes</A>
|
||||
//! \since Crypto++ 4.0, Crypto++ 5.6.6 for Bouncy Castle and Botan compatibility
|
||||
//! \since Crypto++ 4.0, Crypto++ 5.7 for Bouncy Castle and Botan compatibility
|
||||
template <class EC, class HASH = SHA1, class COFACTOR_OPTION = NoCofactorMultiplication, bool DHAES_MODE = true, bool LABEL_OCTETS = false>
|
||||
struct ECIES
|
||||
: public DL_ES<
|
||||
|
|
|
|||
|
|
@ -699,7 +699,7 @@ public:
|
|||
//! \sa ECIES, <a href="http://www.weidai.com/scan-mirror/ca.html#DLIES">Discrete Log Integrated Encryption Scheme (DLIES)</a>,
|
||||
//! Martínez, Encinas, and Ávila's <A HREF="http://digital.csic.es/bitstream/10261/32671/1/V2-I2-P7-13.pdf">A Survey of the Elliptic
|
||||
//! Curve Integrated Encryption Schemes</A>
|
||||
//! \since Crypto++ 4.0, Crypto++ 5.6.6 for Bouncy Castle and Botan compatibility
|
||||
//! \since Crypto++ 4.0, Crypto++ 5.7 for Bouncy Castle and Botan compatibility
|
||||
template <class HASH = SHA1, class COFACTOR_OPTION = NoCofactorMultiplication, bool DHAES_MODE = true, bool LABEL_OCTETS=false>
|
||||
struct DLIES
|
||||
: public DL_ES<
|
||||
|
|
|
|||
Loading…
Reference in New Issue