aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge GH #1251 Fix CMakeJack Lloyd2017-10-121-3/+5
|\
| * Prevent a lint complaint.Frank Schoenmann2017-10-121-1/+2
| |
| * Repair generation of CMakeLists.txt after some files have been moved.Frank Schoenmann2017-10-121-3/+4
| |
* | Avoid std::count to skip a signed overflow warningJack Lloyd2017-10-122-3/+13
| | | | | | | | | | | | Couldn't figure out a way to silence this otherwise. Deprecate replace_char, erase_chars, replace_chars
* | Merge GH #1245 Restructure Barrier/Semaphore to avoid signed overflow warningsJack Lloyd2017-10-122-11/+9
|\ \ | |/ |/|
| * #1220 - fixed fixes of integer overflowHubert Bugaj2017-10-102-7/+3
| |
| * #1220 - fixed signed overflow warningsHubert Bugaj2017-10-092-10/+12
| |
* | Merge GH #1248 Unroll SM3 compression loopJack Lloyd2017-10-111-56/+94
|\ \
| * | Unroll SM3 compression functionJack Lloyd2017-10-101-56/+94
| | |
* | | Merge GH #1249 Add Eclipse configJack Lloyd2017-10-111-0/+167
|\ \ \
| * | | Add Eclipse code formatting template [ci skip]René Korthaus2017-10-111-0/+167
| | | |
* | | | Avoid <thread>Jack Lloyd2017-10-111-2/+6
| | | | | | | | | | | | | | | | Not needed here
* | | | Helpful commentJack Lloyd2017-10-111-1/+2
| | | |
* | | | Update test for new error returnJack Lloyd2017-10-111-1/+1
| | | |
* | | | Remove SSE2 bswap_4Jack Lloyd2017-10-111-24/+0
| | | | | | | | | | | | | | | | | | | | It was disabled anyway (bad macro check) and with recent GCC turned out to be slower than just using bswap.
* | | | Optimize CFB modeJack Lloyd2017-10-112-39/+97
| | | | | | | | | | | | | | | | Still slower but notably faster at least with AES-NI
* | | | Add missing headerJack Lloyd2017-10-111-0/+1
| | | | | | | | | | | | | | | | Error under filesystem-free builds
* | | | Deprecate anon DH/ECDH TLS ciphersuitesJack Lloyd2017-10-111-0/+2
| | | |
* | | | Simplify ffi call overheadJack Lloyd2017-10-115-45/+22
|/ / / | | | | | | | | | Notable reductions in code size, stack size and function call overhead.
* | | getenv is in standard C++Jack Lloyd2017-10-091-1/+1
| | |
* | | Merge GH #1246 OpenBSD/clang build fixJack Lloyd2017-10-091-0/+2
|\ \ \ | |_|/ |/| |
| * | Include cstdlib to make os_utils compile with clang.Alexander Bluhm2017-10-091-0/+2
|/ /
* | Merge GH #1244 Avoid deprecation warnings inside the library resolves #1243Jack Lloyd2017-10-093-7/+32
|\ \
| * | Add comments explaining why its ok to rely on deprecated features here.Jack Lloyd2017-10-092-0/+8
| | | | | | | | | | | | [ci skip]
| * | Add a special Compat_Callbacks constructor to silence deprecation warnings.Jack Lloyd2017-10-093-7/+24
| | | | | | | | | | | | | | | | | | That way we avoid the warning internally even in amalgamation mode. GH #1243
* | | Merge GH #1241 Add ability to disable SSE 4Jack Lloyd2017-10-081-1/+1
|\ \ \ | |/ / |/| |
| * | Make it possible to disable SSE4.1 and SSE4.2Simon Warta2017-10-081-1/+1
|/ /
* | Forward declare BigInt in mp_core.hJack Lloyd2017-10-062-1/+3
| | | | | | | | Only needed in one source file here.
* | Remove needless variableJack Lloyd2017-10-061-2/+0
| |
* | Address some bool/int conversion warnings from SonarJack Lloyd2017-10-064-5/+12
| | | | | | | | Nothing major but probably good to clean these up.
* | Address various GCC warningsJack Lloyd2017-10-068-24/+26
| | | | | | | | | | Things like -Wconversion and -Wuseless-cast that are noisy and not on by default.
* | Add mod_inverse cmdletJack Lloyd2017-10-061-0/+16
| | | | | | | | I needed it ;)
* | Restart state in Text_Based_Test after test is overJack Lloyd2017-10-061-0/+2
| | | | | | | | This allows --test-runs= to work as expected
* | Update news to mention RIPEMD-160 OIDJack Lloyd2017-10-061-0/+2
| |
* | Correct the SHA-3 PKCSv1.5 IDsJack Lloyd2017-10-055-5/+112
| | | | | | | | | | | | | | Thanks to @noloader for pointing me at draft-jivsov-openpgp-sha3-01 which has the correct values. Adds a test so this can't happen again.
* | Mark some functions of MDx_HashFunction finalJack Lloyd2017-10-051-3/+3
| | | | | | | | | | The class itself can't be final but we can final the overrides from HashFunction, which helps the compiler devirtualize.
* | Add missing `override`Jack Lloyd2017-10-051-1/+1
| | | | | | | | | | Redundant with `final` but GCC -Wsuggest-override complains. (This is already a bug filed for this in GCC upstream.)
* | Add missing includeJack Lloyd2017-10-051-0/+1
|/ | | | | In filesystem free build, we weren't including any definition of std::istream. GH #1238
* Add limits.h header for INT_MAXJack Lloyd2017-10-041-0/+1
| | | | Gentoo bug https://bugs.gentoo.org/633468
* Simplify header includes in socket.cppJack Lloyd2017-10-031-9/+3
| | | | | | This got a little contorted in os_utils.cpp because of need to support Boost asio along with system dependent interfaces. Here it's simple: Boost or Unix or Winsock.
* Merge GH #1232 Only require socket code if http_util is loadedJack Lloyd2017-10-037-305/+368
|\
| * Add missing windows.h include in os_utils.cppSimon Warta2017-10-031-0/+3
| |
| * Add missing include mem_ops.h in socket.cppSimon Warta2017-10-031-0/+2
| | | | | | | | cast_uint8_ptr_to_char is required by Winsock_Socket
| * Move socket implementation into module http_utilSimon Warta2017-10-037-308/+366
| | | | | | | | | | This removes the requirement of linking socket libraries for applications that do not use http_util
* | Avoid empty methods, use =default or add a commentJack Lloyd2017-10-0321-41/+29
| | | | | | | | Sonar
* | Merge GH #1233 Fix missing include in OpenSSL codeJack Lloyd2017-10-031-0/+1
|\ \ | |/ |/|
| * Add missing cstdlib include to openssl_rsa.cppilovezfs2017-10-031-0/+1
|/ | | | Fixes the build with Xcode 8 and earlier.
* Remove redundant private: specifierJack Lloyd2017-10-031-1/+1
| | | | [ci skip]
* Avoid leaking SONAR_TOKEN in the build logJack Lloyd2017-10-032-2/+3
|
* Add static_cast to avoid conversion warningJack Lloyd2017-10-031-1/+2
| | | | | I guess we're in trouble if we add any block ciphers with size >= 2^31 Probably fine.