aboutsummaryrefslogtreecommitdiff
path: root/patches/rfc5280.c.patch (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-06Add curve25519 to portablekinichiro5-1/+19
2016-11-05remove bad linkBrent Cook1-1/+0
2016-11-05add quoting for man linksBrent Cook1-2/+2
2016-11-05update mlinksBrent Cook1-9/+464
2016-11-05use the new mlinks tool to generate man linksBrent Cook1-13/+14
2016-11-05update for new manpage layout, pod files are goneBrent Cook1-14/+1
2016-11-06remove duplicate libcrypto static linkBrent Cook1-1/+1
2016-11-06export ASN1_time_parseBrent Cook1-0/+1
2016-11-06remove more KRB5Brent Cook1-11/+0
2016-11-06remove defined symbolsBrent Cook1-46/+0
2016-11-06remove check-in .def and ignore .sym filesBrent Cook3-330/+1
2016-11-06implement support for hiding symbols in libtls / libsslBrent Cook6-341/+42
2016-11-05remove krb5 from cmakeBrent Cook1-1/+0
2016-11-05enable preprocessor on all ASM files with cmakeBrent Cook1-32/+32
2016-11-05disable symbol hiding for nowBrent Cook2-0/+3
2016-11-05updates for latest build changesBrent Cook4-53/+51
2016-11-04update windows header patchesBrent Cook1-3/+3
2016-11-04Add tls_ocsp.c to Makefile.am and CMakeLists.txtkinichiro2-0/+2
2016-10-30define PATH_MAX in more msvc versionsBrent Cook1-0/+8
2016-10-30set correct DEFAULT_CA_FILE pathBrent Cook1-14/+24
2016-10-30remove unneeded slash after DESTDIRkinichiro1-4/+4
2016-10-30Enable tests on Visual Studiokinichiro13-28/+429
- add patch for aeadtest.c to undef IN - add patch for ocsp_test.c to call BIO_sock_init() before getaddrinfo() - define STDERR_FILENO in unistd.h to build pkcs7test.c - add option ENABLE_VSTEST(default OFF) to enable test on Visual Studio - modify to pass test data file as an argument (aeadtest, evptest) - add Windows scripts (ocsptest, pq_test, ssltest, testdsa, testenc, testrsa) - do not build pidwraptest on MSVC - fix some indentations
2016-10-30modify for Intel C++ Compilerkinichiro1-17/+36
- define _CRT_SUPPRESS_RESTRICT to avoid compilation error - suppress compilation warnings (suggested by @Johnex)
2016-10-30export DLLs functions for MSVC with CMakekinichiro10-9/+4465
- Add 3 DEF files to export functions from Windows DLLs - Add gettimeofday to crypto/crypto.def (*1) - Remove gai_strerrorA from tls/tls.def (*1) - Fix CMakeLists.txt to use DEF files as PRIVATE - Change DLL import library file name since it duplicates with static library - Ignore compiler warning C4267, and Edit CMAKE_C_FLAGS not to overwrite it (*1) - Add USE_SHARED option to build openssl.exe with shared libraries (*1) (*1) recommended by @mcnameej
2016-09-23More changelog updatesv2.5.0Brent Cook1-2/+6
2016-09-23update changelogBrent Cook1-1/+50
2016-09-23Update changelogBrent Cook1-0/+13
2016-09-14ensure that __STRING worksBrent Cook1-0/+5
2016-09-14remove cmsBrent Cook3-3/+1
2016-09-04more cdefs.h removalBrent Cook2-3/+0
2016-09-04cdefs.h should not be required anywhereBrent Cook2-31/+16
2016-09-04wire up sys/types.h to pull in sys/cdefs.hBrent Cook1-0/+2
2016-09-04rebase nc(1) patchBrent Cook1-20/+20
2016-09-02update for new repository layoutBrent Cook1-21/+21
2016-08-30enable tls_ext_alpn regression testkinichiro3-0/+11
- add tls_ext_alpn entry for automake and cmake - add tests/tls_ext_alpn* to .gitignore
2016-08-25build Windows DLL on CMakeSatoshi Yasushima4-4/+10
like below. * libcrypto-38.dll * libssl-39.dll * libtls-11.dll
2016-08-25build MinGW on CMakeSatoshi Yasushima4-7/+10
2016-08-13remove DEFAULT_CA_FILE patch, since libtls handles this by defaultBrent Cook2-41/+14
2016-08-12Set _PATH_SSL_CA_FILE to the tarball internal path for regression testskinichiro2-6/+3
- let tests to use the cert.pem in the tarball, for both automake and cmake. - put this definition out of "if(ENABLE_EXTRATESTS)" since this can be shared by all tests.
2016-08-09Disable netcat if arpa/telnet.h is not available (iOS)jacob berkman1-0/+2
2016-08-07compat gentroy() for macs is called gentropy_osx.cTamer Saadeh1-1/+1
2016-08-01Set _PATH_SSL_CA_FILE to either CMAKE_INSTALL_PREFIX or OPENSSLDIR for the ↵Geoff Beier1-0/+5
OCSP tests so that OCSP tests can be executed on a system without /etc/ssl/cert.pem
2016-07-31update changelog for 2.4.2Brent Cook1-0/+39
2016-07-31set link library dependencies with MSVC, fixes #221Brent Cook3-0/+9
2016-07-31properly enable strnlen checks for MSVCBrent Cook1-1/+1
2016-07-19Fix typo in USE_BUILTIN_ARC4RANDOM checkcelan691-1/+1
Solaris 11 recently introduced a builtin arc4random in libc which fails the tests in "make check". Found USE_BUILTIN_ARC4RANDOM, but could not get it to work. Apparently, there is a typo in the configure logic rendering USE_BUILTIN_ARC4RANDOM ineffective.