aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
Commit message (Expand)AuthorAgeFilesLines
* Avoid empty methods, use =default or add a commentJack Lloyd2017-10-0320-40/+29
* Add missing cstdlib include to openssl_rsa.cppilovezfs2017-10-031-0/+1
* Remove redundant private: specifierJack Lloyd2017-10-031-1/+1
* Add static_cast to avoid conversion warningJack Lloyd2017-10-031-1/+2
* Force expand_mask to be on T instead of intJack Lloyd2017-10-031-1/+1
* MSVC wants __declspec(restrict) on both declaration and definitionJack Lloyd2017-10-031-1/+1
* Add wrappers for reinterpret_cast between char* and uint8_t*Jack Lloyd2017-10-0329-66/+85
* Remove redundant parensJack Lloyd2017-10-037-8/+8
* Remove redundant return statementJack Lloyd2017-10-021-1/+1
* Remove various unused variablesJack Lloyd2017-10-023-4/+0
* Remove unnecessary virtuals from final classesJack Lloyd2017-10-026-10/+6
* Uppercase constantsJack Lloyd2017-10-021-12/+15
* Use class for exception typesJack Lloyd2017-10-022-5/+9
* Remove protected functions from final classesJack Lloyd2017-10-028-38/+8
* Make TLS::Blocking_Client non-finalJack Lloyd2017-10-021-1/+1
* sigemptyset is a macro on OS XJack Lloyd2017-10-021-1/+1
* Remove protected m_handle data from PKCS11::ObjectJack Lloyd2017-10-023-6/+18
* Make m_emsa in PK_{Signature,Verification}_with_EMSA privateJack Lloyd2017-10-022-4/+7
* Make EMSA1 data privateJack Lloyd2017-10-021-6/+4
* Make kv in TLS_Text_Policy private, add protected setterJack Lloyd2017-10-022-0/+14
* Remove protected data members from X509_ObjectJack Lloyd2017-10-025-41/+27
* Remove needless blockJack Lloyd2017-10-021-11/+7
* Avoid using namespace in FFI headersJack Lloyd2017-10-025-7/+3
* Prefix names in global namespace with ::Jack Lloyd2017-10-023-7/+7
* Remove redundant "virtual override" declarations.Jack Lloyd2017-10-028-36/+34
* Fix some cast warnings from SonarJack Lloyd2017-10-015-6/+6
* Use explicit :: or std:: to refer to functions in namespacesJack Lloyd2017-10-011-1/+1
* Use explicit_bzero on OpenBSDJack Lloyd2017-09-301-2/+7
* Remove unused namespaceJack Lloyd2017-09-301-4/+0
* Avoid -size_tJack Lloyd2017-09-301-1/+1
* Guard against self-assignmentJack Lloyd2017-09-302-0/+6
* Change this code so Sonar understands div by zero can't happenJack Lloyd2017-09-301-2/+3
* Another FFI struct vs class fixJack Lloyd2017-09-301-1/+1
* Retract explicit on OIDJack Lloyd2017-09-301-1/+1
* FFI objects have to be structs because we expose them to CJack Lloyd2017-09-302-5/+4
* Use explicit on more single-argument constructorsJack Lloyd2017-09-3014-20/+23
* Avoid bogus declarations in GMACJack Lloyd2017-09-301-25/+3
* Address some MSVC warningsJack Lloyd2017-09-307-134/+139
* Use class instead of struct for objects with member functionsJack Lloyd2017-09-3013-156/+183
* Add annotation so GCC/Clang/MSVC know it is an allocation function.Jack Lloyd2017-09-302-1/+12
* Merge GH #1231 Hide secure_allocator allocate in a functionJack Lloyd2017-09-305-22/+55
|\
| * Missing include, noticed by OS XJack Lloyd2017-09-291-0/+1
| * In secure_allocator, hide mlock/new usage in a function in mem_opsJack Lloyd2017-09-295-22/+54
* | Thinko fixJack Lloyd2017-09-301-1/+1
* | Compat typedef PBKDF -> S2KJack Lloyd2017-09-291-1/+12
|/
* Avoid throwing in pool allocator deallocation pathJack Lloyd2017-09-291-8/+1
* Merge GH #1229 Simplify allocator and avoid MSVC perf issueJack Lloyd2017-09-291-37/+5
|\
| * Add back size_type typedefJack Lloyd2017-09-291-0/+1
| * Of course MSVC 2013 has to be specialJack Lloyd2017-09-291-0/+7
| * Simplifiy secure_allocatorJack Lloyd2017-09-291-44/+4