summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Reuse outLength in ProcessLastBlockJeffrey Walton2019-10-121-4/+4
|
* Clear UBsan warning in hmac.cppJeffrey Walton2019-10-121-1/+5
|
* Make GF_Double 64-bit aware on MS platformsJeffrey Walton2019-10-121-1/+1
|
* Update documentationJeffrey Walton2019-10-121-0/+2
|
* Validate XTS block size when CRYPTOPP_XTS_WIDE_BLOCK_CIPHERS==0Jeffrey Walton2019-10-121-0/+6
|
* Revert BlowfishCompat changes (PR #877)Jeffrey Walton2019-10-126-141/+40
|
* Fix stray semicolons uder MSVC (GH #889)Jeffrey Walton2019-10-122-7/+7
|
* Fix XTS compile under ClangJeffrey Walton2019-10-121-1/+1
|
* Fix XTS compile under ClangJeffrey Walton2019-10-121-1/+1
|
* Update documentationJeffrey Walton2019-10-121-1/+7
|
* Add XTS test vectors to All collectionJeffrey Walton2019-10-122-0/+108
|
* Add XTS block cipher mode of operation (GH #891, PR #892)Jeffrey Walton2019-10-1217-21/+8772
|
* Make bt const in BERDecodePeekLengthJeffrey Walton2019-10-082-2/+2
|
* Update documentationJeffrey Walton2019-10-072-3/+4
|
* Clear signed/unsigned warnings under ClangJeffrey Walton2019-10-051-22/+22
|
* Clear virtual dtor warning under ClangJeffrey Walton2019-10-051-0/+1
|
* Update documentationJeffrey Walton2019-10-052-1/+10
|
* Cleanup stray semicolonsJeffrey Walton2019-10-032-5/+4
| | | | I believe this is the last group from https://github.com/weidai11/cryptopp/issues/889
* Remove double semicolons after sed'ing definesJeffrey Walton2019-10-0312-40/+40
| | | | Also see https://github.com/weidai11/cryptopp/issues/889
* Don't add semicolon to CRYPTOPP_CONSTANT abd DOCUMENTED_TYPEDEF (GH #889)Jeffrey Walton2019-10-0334-253/+254
| | | | This issue is a recurring issue. Let's try fixing it in the #define this time.
* Update vs2005 solution filesJeffrey Walton2019-10-031-0/+0
|
* Clear deprecated warnings with early MSVC compilersJeffrey Walton2019-10-031-3/+2
|
* Clear truncation warnings with early MSVC compilersJeffrey Walton2019-10-031-2/+6
|
* Clear unreachable code warnings with early MSVC compilersJeffrey Walton2019-10-037-3/+24
|
* Fix -Wundefined-var-template warning in Blowfish (PR #888)Răzvan Cojocaru2019-10-031-0/+6
|
* Add BytePtr and ConstBytePtr overloads for SecByteBlock (GH #890)Jeffrey Walton2019-10-037-7/+87
|
* Update documentationJeffrey Walton2019-10-011-3/+3
|
* Update documentationJeffrey Walton2019-10-011-2/+25
|
* Update documentationJeffrey Walton2019-10-011-2/+3
|
* Add some missing OID's used in X.509 certificatesJeffrey Walton2019-10-011-0/+6
|
* Update documentationJeffrey Walton2019-10-011-0/+12
|
* Add additional ANSI X9.62 OIDsJeffrey Walton2019-10-011-2/+8
|
* Add OID operator<= and operator>=Jeffrey Walton2019-10-011-0/+4
| | | | I thought the compiler was supposed to deduce these from operator== and operator<, but not for GCC 7.2
* Add additional ASN.1 string typesJeffrey Walton2019-09-301-1/+3
|
* Add allocate.cpp to nmake sourcesJeffrey Walton2019-09-301-2/+2
|
* Add -DCRYPTOPP_DISABLE_ASM for 'make deps' recipeJeffrey Walton2019-09-302-2/+2
| | | | Clang needs it
* Fix Travis build on OS XJeffrey Walton2019-09-302-5/+14
|
* Fix compile error due to missing BytePtr overloadJeffrey Walton2019-09-292-5/+4
| | | | This is a local change on a testing fork. It is not tested for Master yet.
* Update documentationJeffrey Walton2019-09-291-0/+8
|
* Add DEREncodeTextString overloadJeffrey Walton2019-09-292-5/+33
|
* Add ASN.1 Date type supportJeffrey Walton2019-09-292-4/+97
|
* Add dome missing OID's used in X.509 certificatesJeffrey Walton2019-09-291-1/+17
|
* Add support for Mcrypt's blowfish-compat (PR #877)Răzvan Cojocaru2019-09-297-40/+136
|
* Update BERDecodeTextStringJeffrey Walton2019-09-292-7/+21
|
* Fix Rijndael recursion overflow when -DCRYPTOPP_DISABLE_SSSE3 (GH #880, PR #886)Jeffrey Walton2019-09-283-20/+123
|
* Clear sign conversion warningsJeffrey Walton2019-09-281-3/+3
|
* Clear sign conversion warningsJeffrey Walton2019-09-282-8/+10
|
* Avoid circular dependency using AlignedAllocate (GH #885)Jeffrey Walton2019-09-2812-139/+199
|
* Clear shadow warning in MSVCJeffrey Walton2019-09-281-1/+1
|
* Add Certificate interface (GH #884)Jeffrey Walton2019-09-281-0/+5
| | | | The Certificate interface will allow the library or third parties to add concrete classes like X509Certificate with expected library support or integration