aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Copy libc compat files rather than adding into the repositorykinichiro2017-01-286-596/+6
| | | | | | | | | | - remove the CP_LIBC files from repo - move tests/memmem.c to tests/compat/
* | Move S_IRGRP and S_IROTH from fcntl.h to sys/stat.hkinichiro2017-01-282-8/+9
|/ | | | | | - S_IRGRP and S_IROTH should be defined in sys/stat.h rather than fcntl.h - Old MinGW64 on Ubuntu 14.04 appears not to have S_IRGRP and S_IROTH - MinGW64 has __WIN32 defined but does not have _MSC_VER defined
* skip building ocspcheck on MSCVBrent Cook2017-01-271-0/+4
|
* update manpage linksBrent Cook2017-01-271-93/+143
|
* update for death of s23*Brent Cook2017-01-272-18/+12
|
* update for improved libtls manpage organizationBrent Cook2017-01-271-11/+6
|
* Copy openbsd library file every time rather than statically checking inkinichiro2017-01-273-267/+0
|
* Add S_IRGRP and S_IROTH to include/compat/fcntl.h for ocspcheckkinichiro2017-01-261-0/+8
|
* Add STDOUT_FILENO to include/compat/unistd.hkinichiro2017-01-261-0/+1
|
* Add inet_ntop and memmem for ocspcheckkinichiro2017-01-268-2/+300
|
* Add regress rsa_testkinichiro2017-01-252-0/+10
|
* Move strsep.c to crypto/compat/ and add ocspcheck build to CMakekinichiro2017-01-257-11/+14
|
* initial ocspcheck integrationBrent Cook2017-01-246-8/+64
|
* updates for new tests and layoutBrent Cook2017-01-224-0/+6
|
* add missing ecp_nist*.c filesBrent Cook2017-01-182-0/+8
|
* check if EXTRA_EXPORT is set, fix cmake builds on OpenBSDBrent Cook2017-01-181-4/+6
|
* Land #262, Fix fcntl.h shim for HP-UX 11.31 (ia64)Brent Cook2017-01-181-2/+2
|\
| * Fix fcntl.h shim since HP-UX 11.31 (ia64) does not define O_CLOEXECkinichiro2017-01-191-2/+2
| |
* | Stop generating .def files by update.shkinichiro2017-01-185-34/+0
| |
* | Add export symbol support to CMake for libcryptokinichiro2017-01-182-2/+45
| |
* | Add export symbol support to CMakekinichiro2017-01-185-5/+47
|/
* MSVSC fixesBrent Cook2017-01-164-7/+9
|
* pass through errors for tlstest and ssltestBrent Cook2017-01-162-0/+6
|
* add open(2) shim to handle O_BINARY and O_CLOEXECBrent Cook2017-01-164-0/+31
|
* add fcntl shimBrent Cook2017-01-162-0/+33
|
* enable tlstest on win32Brent Cook2017-01-153-5/+1
|
* add noreturn attribute to compat functionsBrent Cook2017-01-151-0/+10
|
* handle EBADF, which is returned when a file is passedBrent Cook2017-01-151-3/+6
|
* add windows versions of socketpair / pipeBrent Cook2017-01-151-8/+119
|
* include pipe2/socketpair compat for macOSBrent Cook2017-01-156-2/+83
|
* start to enable tlstest for portableBrent Cook2017-01-155-3/+53
| | | | Disabled on Windows for now due to pipe2/socketpair support.
* Fix to use -export-symbols for libcryptokinichiro2017-01-153-1/+74
| | | | - generating platform specific crypto/crypto_portable.sym from crypto.sym
* Land #256, Define CMake library object lists globallyBrent Cook2017-01-133-3/+3
|\
| * Define CMake library object lists globallyMatt Stancliff2017-01-123-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 offsetMatt Stancliff2017-01-121-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 -> OCSPBrent Cook2017-01-091-2/+2
|
* update ChangelogBrent Cook2017-01-091-0/+39
|
* fix static mingw builds, platform LDADD needs to come at the endBrent Cook2017-01-093-6/+6
|
* update linksBrent Cook2017-01-071-0/+1
|
* Add regression test ssl_versionskinichiro2017-01-063-0/+11
|
* update manpage linksBrent Cook2016-12-291-17/+660
|
* Land #250, implement support for hiding symbols in libcryptoBrent Cook2016-12-293-3743/+27
|\
| * implement support for hiding symbols in libcryptokinichiro2016-12-263-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 checksSimone Basso2016-12-102-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 checkSimone Basso2016-12-091-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 iosSimone Basso2016-12-091-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 nameBrent Cook2016-11-131-1/+1
|
* update to trusty distro, remove 3rd-party PPAs for testingBrent Cook2016-11-132-7/+8
|
* fix static test link failures on OS XBrent Cook2016-11-131-0/+3
|
* update manpage linksBrent Cook2016-11-131-320/+12
|