Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix MSC version numbers (GH #1185) | Jeffrey Walton | 2023-03-02 | 1 | -2/+2 |
| | |||||
* | Fix unused variable declared as const under VS2022, v17.4 (GH #1185) (PR #1186) | Jeffrey Walton | 2023-01-16 | 1 | -1/+6 |
| | | | Fix unused variable declared as const under VS2022, v17.4 | ||||
* | Fix typos (PR# 1099) | Dimitris Apostolou | 2022-01-04 | 1 | -6/+6 |
| | |||||
* | Whitespace check-in | Jeffrey Walton | 2021-11-29 | 1 | -1/+1 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2021-09-24 | 1 | -2/+2 |
| | |||||
* | Update cryptest-coverage.sh script | Jeffrey Walton | 2021-03-19 | 1 | -0/+17 |
| | |||||
* | Update comments | Jeffrey Walton | 2021-03-17 | 1 | -1/+1 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2021-03-08 | 1 | -1/+1 |
| | |||||
* | Prepare for Crypto++ 8.5 releaseCRYPTOPP_8_5_0 | Jeffrey Walton | 2021-03-07 | 1 | -1/+1 |
| | |||||
* | Update documentation | Jeffrey Walton | 2021-02-24 | 1 | -1/+1 |
| | |||||
* | Fix typos | Jeffrey Walton | 2021-02-03 | 1 | -3/+3 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2020-12-22 | 1 | -1/+1 |
| | |||||
* | Update documentation | Jeffrey Walton | 2020-12-20 | 1 | -9/+13 |
| | |||||
* | Update documentation | Jeffrey Walton | 2020-12-20 | 1 | -4/+4 |
| | |||||
* | Use \return and \throw consitently in the docs | Jeffrey Walton | 2020-12-07 | 1 | -32/+32 |
| | |||||
* | Update documentation | Jeffrey Walton | 2020-09-20 | 1 | -2/+6 |
| | |||||
* | Update documentation | Jeffrey Walton | 2020-01-01 | 1 | -3/+4 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-12-31 | 1 | -267/+261 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-12-31 | 1 | -111/+111 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-12-31 | 1 | -26/+30 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-12-31 | 1 | -12/+12 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-10-18 | 1 | -0/+4 |
| | |||||
* | Add Certificate interface (GH #884) | Jeffrey Walton | 2019-09-28 | 1 | -0/+5 |
| | | | | The Certificate interface will allow the library or third parties to add concrete classes like X509Certificate with expected library support or integration | ||||
* | Update documentation | Jeffrey Walton | 2019-09-28 | 1 | -2/+2 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-09-26 | 1 | -2/+11 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-08-17 | 1 | -26/+60 |
| | |||||
* | Fix use of MaxDerivedKeyLength (GH #874) | Jeffrey Walton | 2019-08-16 | 1 | -2/+2 |
| | |||||
* | Fix use of MaxDerivedKeyLength (GH #874) | Jeffrey Walton | 2019-08-16 | 1 | -2/+2 |
| | | | | Also fix memcpy with NULL buffer | ||||
* | Increase m_buf size (GH #862) | Jeffrey Walton | 2019-07-10 | 1 | -1/+4 |
| | |||||
* | Add BufferedTransformation GetWord64 and PutWord64 (GH #862) | Jeffrey Walton | 2019-07-10 | 1 | -12/+46 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2019-04-29 | 1 | -1/+1 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2019-02-23 | 1 | -1/+1 |
| | | | | Also see https://www.cryptopp.com/wiki/Release_Process#Increment_version_numbers | ||||
* | Fix missing symbols in Windows DLL | Jeffrey Walton | 2019-02-22 | 1 | -3/+3 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-02-12 | 1 | -3/+5 |
| | |||||
* | Clear Doxygen warnings | Jeffrey Walton | 2019-01-28 | 1 | -5/+5 |
| | |||||
* | Update documentation | Jeffrey Walton | 2019-01-28 | 1 | -6/+38 |
| | |||||
* | Post-release version increment | Jeffrey Walton | 2018-12-28 | 1 | -1/+1 |
| | | | | Also see https://www.cryptopp.com/wiki/Release_Process#Increment_version_numbers | ||||
* | Prepare for Crypto++ 8.0 release | Jeffrey Walton | 2018-12-27 | 1 | -2/+2 |
| | |||||
* | Update documentation | Jeffrey Walton | 2018-12-25 | 1 | -4/+4 |
| | |||||
* | Update documentation | Jeffrey Walton | 2018-12-25 | 1 | -3/+3 |
| | |||||
* | Update documentation | Jeffrey Walton | 2018-12-12 | 1 | -4/+6 |
| | |||||
* | Update documentation | Jeffrey Walton | 2018-12-03 | 1 | -10/+16 |
| | |||||
* | Move DEFAULT_CHANNEL and AAD_CHANNEL defs into cryptlib.cpp (GH #751) | Jeffrey Walton | 2018-12-03 | 1 | -34/+4 |
| | | | | | | | | The library used to provide DEFAULT_CHANNEL and AAD_CHANNEL this way. We experienced Static Initialization Order Fiasco crashes on occassion, so we moved them into cryptlib.h with internal linkage. The cost was, each translation unit got a copy of the strings which contributed to bloat. Issue 751 shows Clang compiles the global constructors for DEFAULT_CHANNEL and AAD_CHANNEL above the base ISA so we caught crashes on OS X with down-level hardware. We are now at a "pick your poison" point. We selected Static Initialization Order Fiasco because it seems to be less prevalent. Hat tip to the C++ Committee for allowing this problem to fester for three decades. | ||||
* | cryptlib.h | Jeffrey Walton | 2018-11-04 | 1 | -1/+1 |
| | |||||
* | Add ability to Seek64 in test framework (GH #732) | Jeffrey Walton | 2018-11-04 | 1 | -0/+18 |
| | | | | Also see https://github.com/randombit/botan/pull/1728 | ||||
* | Add VectorSource (GH #730) | orangefour | 2018-11-01 | 1 | -1/+1 |
| | |||||
* | Use version 7.0 rather than 6.2 | Jeffrey Walton | 2018-10-19 | 1 | -2/+2 |
| | | | | We had to perform a major version bump due to an ABI break | ||||
* | Add VectorSink | orangefour | 2018-09-05 | 1 | -1/+1 |
| | |||||
* | Remove Thread and Socket classes (GH #208, PR #703) | Jeffrey Walton | 2018-08-17 | 1 | -3/+3 |
| | | | Also see https://groups.google.com/forum/#!topic/cryptopp-users/5btwLoxXXD4. |