Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Land #262, Fix fcntl.h shim for HP-UX 11.31 (ia64) | Brent Cook | 2017-01-18 | 1 | -2/+2 | |
|\ | ||||||
| * | Fix fcntl.h shim since HP-UX 11.31 (ia64) does not define O_CLOEXEC | kinichiro | 2017-01-19 | 1 | -2/+2 | |
| | | ||||||
* | | Stop generating .def files by update.sh | kinichiro | 2017-01-18 | 5 | -34/+0 | |
| | | ||||||
* | | Add export symbol support to CMake for libcrypto | kinichiro | 2017-01-18 | 2 | -2/+45 | |
| | | ||||||
* | | Add export symbol support to CMake | kinichiro | 2017-01-18 | 5 | -5/+47 | |
|/ | ||||||
* | MSVSC fixes | Brent Cook | 2017-01-16 | 4 | -7/+9 | |
| | ||||||
* | pass through errors for tlstest and ssltest | Brent Cook | 2017-01-16 | 2 | -0/+6 | |
| | ||||||
* | add open(2) shim to handle O_BINARY and O_CLOEXEC | Brent Cook | 2017-01-16 | 4 | -0/+31 | |
| | ||||||
* | add fcntl shim | Brent Cook | 2017-01-16 | 2 | -0/+33 | |
| | ||||||
* | enable tlstest on win32 | Brent Cook | 2017-01-15 | 3 | -5/+1 | |
| | ||||||
* | add noreturn attribute to compat functions | Brent Cook | 2017-01-15 | 1 | -0/+10 | |
| | ||||||
* | handle EBADF, which is returned when a file is passed | Brent Cook | 2017-01-15 | 1 | -3/+6 | |
| | ||||||
* | add windows versions of socketpair / pipe | Brent Cook | 2017-01-15 | 1 | -8/+119 | |
| | ||||||
* | include pipe2/socketpair compat for macOS | Brent Cook | 2017-01-15 | 6 | -2/+83 | |
| | ||||||
* | start to enable tlstest for portable | Brent Cook | 2017-01-15 | 5 | -3/+53 | |
| | | | | Disabled on Windows for now due to pipe2/socketpair support. | |||||
* | Fix to use -export-symbols for libcrypto | kinichiro | 2017-01-15 | 3 | -1/+74 | |
| | | | | - generating platform specific crypto/crypto_portable.sym from crypto.sym | |||||
* | Land #256, Define CMake library object lists globally | Brent Cook | 2017-01-13 | 3 | -3/+3 | |
|\ | ||||||
| * | Define CMake library object lists globally | Matt Stancliff | 2017-01-12 | 3 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | OBJECT collections in CMake don't generate any artifacts so these are safe to hoist out and define globally. library OBJECT targets are just a list of filenames. It can be useful for other projects to include lists of sources directly regardless of build mode (shared, static, or library). | |||||
* | | Use correct CMake base directory offset | Matt Stancliff | 2017-01-12 | 1 | -3/+3 | |
|/ | | | | | | | | | CMAKE_SOURCE_DIR is the top-level directory of a project, but if you include this as a dependency, the file check locations won't exist at the top level of any parent project. CMAKE_CURRENT_SOURCE_DIR is the actual directory of the current project() regardless of compile mode (standalone or included in another project). | |||||
* | OSCP -> OCSP | Brent Cook | 2017-01-09 | 1 | -2/+2 | |
| | ||||||
* | update Changelog | Brent Cook | 2017-01-09 | 1 | -0/+39 | |
| | ||||||
* | fix static mingw builds, platform LDADD needs to come at the end | Brent Cook | 2017-01-09 | 3 | -6/+6 | |
| | ||||||
* | update links | Brent Cook | 2017-01-07 | 1 | -0/+1 | |
| | ||||||
* | Add regression test ssl_versions | kinichiro | 2017-01-06 | 3 | -0/+11 | |
| | ||||||
* | update manpage links | Brent Cook | 2016-12-29 | 1 | -17/+660 | |
| | ||||||
* | Land #250, implement support for hiding symbols in libcrypto | Brent Cook | 2016-12-29 | 3 | -3743/+27 | |
|\ | ||||||
| * | implement support for hiding symbols in libcrypto | kinichiro | 2016-12-26 | 3 | -3743/+27 | |
| | | | | | | | | | | | | - delete crypto.def and generate it from Symbols.list - remove BIO_s_log since bss_log.c is not included on Windows - add Windows specific symbols by crypto/crypto_win.list | |||||
* | | Sync getentropy() checks with use-builtin-arc4random checks | Simone Basso | 2016-12-10 | 2 | -30/+40 | |
| | | | | | | | | | | Without this, we actually fail to build a library that includes the bultin getentropy when compiling for 10.11 on 10.12. | |||||
* | | m4/check-libc.m4: improve getentropy check | Simone Basso | 2016-12-09 | 1 | -17/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - according to man.openbsd.org getentropy() is in unistd.h - according to macOS sierra's man it's in sys/random.h - since sys/random.h is does not exist for iOS and for linux, do not attempt to include it, rather redeclare the prototype - make sure that `./configure`: - uses getentropy() on macOS sierra - does not use getentropy() if compiling for 10.11 - does not use getentropy() if compiling for ios armv7 | |||||
* | | configure: fix getentropy() for sierra and ios | Simone Basso | 2016-12-09 | 1 | -1/+55 | |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This diff changes the logic by which configure detects getentropy() to ensure that we don't use the system wide getentropy - with macOS sierra if the deployment target is lower than sierra as found by tor developers here https://gitweb.torproject.org/tor.git/commit/?id=https://gitweb.torproject.org/tor.git/commit/?id=16fcbd21c963a9a65bf55024680c8323c8b7175d - with iOS unconditionally because an app linking libressl compiled with system wide getentropy has been rejected by the App store as I have documented here https://github.com/measurement-kit/measurement-kit/pull/994 I think something similar could also affect clock_gettime judging from tor's patch, but this diff for now doesn't address that. I do not have macOS < sierra, so I could only verify that configure was not picking up system wide getentropy by compiling libressl using export CFLAGS="-mmacosx-version-min=10.11" As regards iOS, removing the check for getentropy and recompiling (thus using libressl builtin getentropy()) was enough to have another iteration of the app accepted. Otherwise testing should be possible with: export LDFLAGS=-arch armv7 -miphoneos-version-min=7.1 -isysroot `xcrun --show-sdk-path --sdk iphoneos` export CPPFLAGS=-arch armv7 -isysroot `xcrun --show-sdk-path --sdk iphoneos` export CFLAGS=-arch armv7 -miphoneos-version-min=7.1 -isysroot `xcrun --show-sdk-path --sdk iphoneos` Related ticket: https://github.com/libressl-portable/portable/issues/230 | |||||
* | adjust mingw package name | Brent Cook | 2016-11-13 | 1 | -1/+1 | |
| | ||||||
* | update to trusty distro, remove 3rd-party PPAs for testing | Brent Cook | 2016-11-13 | 2 | -7/+8 | |
| | ||||||
* | fix static test link failures on OS X | Brent Cook | 2016-11-13 | 1 | -0/+3 | |
| | ||||||
* | update manpage links | Brent Cook | 2016-11-13 | 1 | -320/+12 | |
| | ||||||
* | fix cmake to link static crypto library for regression tests | kinichiro | 2016-11-07 | 1 | -0/+2 | |
| | ||||||
* | link regression tests fully statically | Brent Cook | 2016-11-06 | 1 | -1/+1 | |
| | ||||||
* | Fix for tests on Visual Studio | kinichiro | 2016-11-06 | 2 | -55/+83 | |
| | | | | | | - always link static ssl library for tests - copy DLLs for openssl.exe after building tests - add functions to crypto.def | |||||
* | use __MINGW_PRINTF_FORMAT for BIO_* print functions if available | Brent Cook | 2016-11-06 | 1 | -0/+36 | |
| | ||||||
* | prefer builtin arc4random on OS X 10.12+ (using getentropy as the signal) | Brent Cook | 2016-11-06 | 1 | -1/+9 | |
| | ||||||
* | include vpm_int.h | Brent Cook | 2016-11-06 | 1 | -0/+1 | |
| | ||||||
* | update patches | Brent Cook | 2016-11-06 | 2 | -19/+19 | |
| | ||||||
* | Add curve25519 to portable | kinichiro | 2016-11-06 | 5 | -1/+19 | |
| | ||||||
* | remove bad link | Brent Cook | 2016-11-05 | 1 | -1/+0 | |
| | ||||||
* | add quoting for man links | Brent Cook | 2016-11-05 | 1 | -2/+2 | |
| | ||||||
* | update mlinks | Brent Cook | 2016-11-05 | 1 | -9/+464 | |
| | ||||||
* | use the new mlinks tool to generate man links | Brent Cook | 2016-11-05 | 1 | -13/+14 | |
| | ||||||
* | update for new manpage layout, pod files are gone | Brent Cook | 2016-11-05 | 1 | -14/+1 | |
| | ||||||
* | remove duplicate libcrypto static link | Brent Cook | 2016-11-06 | 1 | -1/+1 | |
| | ||||||
* | export ASN1_time_parse | Brent Cook | 2016-11-06 | 1 | -0/+1 | |
| | ||||||
* | remove more KRB5 | Brent Cook | 2016-11-06 | 1 | -11/+0 | |
| |