aboutsummaryrefslogtreecommitdiff
path: root/ssl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add new files to buildBrent Cook2021-09-082-0/+3
|
* add dtls_locl.hBrent Cook2021-05-301-0/+1
|
* Add tls12_key_schedule.ckinichiro2021-05-102-0/+2
|
* Use object library for CMakekinichiro2021-05-021-1/+9
|
* add tls12_lib.cBrent Cook2021-04-272-0/+2
|
* Add '--enable-libtls-only' build optionBrent Cook2021-04-071-0/+4
|
* remove d1_clnt/d1_srvrBrent Cook2020-10-062-4/+0
|
* Link crypto and ssl object files directly instead of static librarykinichiro2020-10-041-0/+9
| | | | | | - Output object files list variable for libcrypto and libssl to .mk file. - Include object files list variable .mk from tls/Makefile - Link .lo files directly instead of static library for libtls.
* Add ssl/tls12_record_layer.ckinichiro2020-09-022-0/+2
|
* remove d1_enc.cBrent Cook2020-03-142-2/+0
|
* SSL target properties when building static libsDan Nestor2020-03-021-11/+9
|
* add new libssl filesBrent Cook2020-02-152-0/+6
|
* add tls_error for cmake buildsBrent Cook2020-01-262-1/+2
|
* tls13_error.c was recently added upstream.Darren Tucker2020-01-261-0/+1
| | | | Fixes link error when building.
* add tls13_server.cBrent Cook2019-11-182-0/+2
|
* add PLATFORM_LDADD to libsslBrent Cook2019-11-071-1/+1
|
* Add ssl/ssl_transcript.c and remove ssl/t1_hash.ckinichiro2019-03-042-2/+2
|
* add tls13_clientBrent Cook2019-01-212-0/+2
|
* add new filesBrent Cook2019-01-212-0/+4
|
* add more tls13 filesBrent Cook2019-01-202-0/+4
|
* add new files and testsBrent Cook2019-01-202-0/+3
|
* adjust for latest upstream changesBrent Cook2019-01-182-3/+1
|
* add tls13_[tlsext|buffer].* and buffertestBrent Cook2019-01-182-0/+5
|
* latest updatesBrent Cook2018-11-092-2/+7
|
* add key_schedule test, tls13 key schedule bitsBrent Cook2018-11-082-0/+3
|
* Misc fixes to bring portable in line with upstream.bobsayshilol2018-11-072-8/+2
|
* Fix cmake to generate proper Libs.private in .pc fileskinichiro2018-10-051-1/+1
|
* Fix cmake linking librarieskinichiro2018-10-031-2/+1
|
* make headers under include/compat private againBrent Cook2018-06-141-2/+2
|
* scope private/public headers when embedding into other projectsBrent Cook2018-05-291-6/+7
| | | | thanks to Cameron Palmer
* Use BUILD_SHARED_LIBS to specify library typeDon2018-03-211-14/+8
|
* add new init functionsBrent Cook2018-03-182-0/+2
|
* Use groups in CMake install command for librariesDon2018-03-161-6/+11
| | | | On Windows shared libraries should be installed into the bin directory. Using grouping within CMake based on the target type fixes this issue.
* Land #332, fix shared library dependencies with cmake for libssl/libtlsBrent Cook2017-08-121-1/+2
|\
| * ssl/tls cmake: fix shared library dependenciesMasud Rahman2017-07-241-1/+2
| | | | | | | | | | | | Ensure that the 'ssl' depends on 'crypto' and that 'tls' depends on 'ssl' and 'crypto' for all platforms. Prior to this commit, the dependency was only specified for the 'WIN32' CMake build.
* | Remove ssl/t1_reneg.ckinichiro2017-08-122-2/+0
|/
* add tlsextBrent Cook2017-07-172-0/+3
|
* Merge branch 'master' of https://github.com/libressl-portable/portable into ↵d3x0r2017-07-061-2/+2
|\ | | | | | | | | | | SkipInstall Fix merge conflicts from GNUInstallDirs merge to master.
| * use GNUInstallDirs from cmake to specify install paths.d3x0r2017-07-061-2/+2
| | | | | | | | Primarily this is to select whether 'lib64' or 'lib' is used on linux type systems.
* | Add option LIBRESSL_SKIP_INSTALLd3x0r2017-07-061-2/+6
|/ | | | | | | | Internally LIBRESSL_SKIP_INSTALL, if not set becomes ENABLE_LIBRESSL_INSTALL so this by default is enabled. defining LIBRESSL_SKIP_INSTALL before hand will disable all install() rules. This is useful if another project includes and links to this statically. I chose to add a prefix to avoid potential name collision because the options are cached globally. If the installation is skipped, maybe it should also disable building apps? I didn't do that.
* Add ssl/t1_hash.ckinichiro2017-03-082-0/+2
|
* update for death of s23*Brent Cook2017-01-272-18/+12
|
* Stop generating .def files by update.shkinichiro2017-01-181-1/+0
|
* Add export symbol support to CMakekinichiro2017-01-181-2/+1
|
* Define CMake library object lists globallyMatt Stancliff2017-01-121-1/+1
| | | | | | | | | 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).
* remove check-in .def and ignore .sym filesBrent Cook2016-11-061-258/+0
|
* implement support for hiding symbols in libtls / libsslBrent Cook2016-11-062-314/+20
|
* export DLLs functions for MSVC with CMakekinichiro2016-10-303-1/+558
| | | | | | | | | | | | - 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
* build Windows DLL on CMakeSatoshi Yasushima2016-08-251-1/+3
| | | | | | | like below. * libcrypto-38.dll * libssl-39.dll * libtls-11.dll
* build MinGW on CMakeSatoshi Yasushima2016-08-251-1/+1
|