aboutsummaryrefslogtreecommitdiff
path: root/crypto (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unneeded target_include_directories with cmakekinichiro2021-12-041-30/+0
| | | | | | | This could remove recurring of the same statement for include directories. Instead of this removals, apps/* and tests should have include path that had been provided by INTERFACE_INCLUDE_DIRECTORIES of target libs and internal static libs.
* Revert "remove LIBRESSL_CRYPTO_INTERNAL"Brent Cook2021-11-291-1/+1
| | | | This reverts commit e8ea73c247069e4e5592b31c0888a8ceb35f7773.
* Land #702: Add ct to libcryptoBrent Cook2021-11-292-0/+25
|\
| * Add ctkinichiro2021-11-272-0/+25
| |
* | remove LIBRESSL_CRYPTO_INTERNALkinichiro2021-11-271-1/+1
| |
* | Build static library for regression tests when shared build with CMakekinichiro2021-11-271-0/+22
|/
* add o_fipsBrent Cook2021-11-082-0/+2
|
* build updatesBrent Cook2021-11-082-0/+7
|
* add new files to buildBrent Cook2021-09-081-0/+2
|
* Statically link libcrypto/ssl into libtls with cmakekinichiro2021-05-071-0/+2
|
* Use object library for CMakekinichiro2021-05-021-1/+17
|
* Add '--enable-libtls-only' build optionBrent Cook2021-04-071-2/+6
|
* modify nc build to link libcompat objects directlyBrent Cook2020-10-201-2/+2
| | | | Rather than assuming the static version of libcrypto exists for pulling in the compatibility functions, link the compat objects directly. This modifies the object file generation script a bit to handle the empty-case properly as well.
* Link crypto and ssl object files directly instead of static librarykinichiro2020-10-041-0/+13
| | | | | | - 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 x509_verify.c x509_verify.hkinichiro2020-09-142-0/+2
|
* Add x509_issuer_cache.c x509_issuer_cache.hkinichiro2020-09-132-0/+3
|
* Add x509_constraints.c x509_internal.hkinichiro2020-09-132-0/+3
|
* Remove cms_lcl.h from crypto/CMakeLists.txtkinichiro2020-07-221-1/+0
|
* Move crypto/x509v3/ files to crypto/x509/kinichiro2020-06-102-73/+69
|
* Fix cmake build to enable masm with VS2019kinichiro2020-05-091-1/+2
| | | | | | | To specify architecture Visual Studio 16 2019 requires -A option, and it is stored in variable CMAKE_GENERATOR_PLATFORM. Until Visual Studio 15 2017, architecture was indicated as part of generator string (e.g. "Visual Studio 15 2017 Win64")
* avoid exporting a sleep() symbol from libcryptoBrent Cook2020-04-142-7/+0
| | | | | | Since it seems only MSVC lacks sleep(), and it's only used by apps, lets special-case that and make it available as a static inline function instead.
* crypto: regenerate crypto_portable.symDmitry Baryshkov2020-03-311-1/+2
| | | | | | | Make crypto_portable.sym depend on crypto.sym and libcrypto.so on crypto_portable.sym to rebuild library if one of symbol files changes. Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
* crypto: do not include gost.h into noinst_HEADERSDmitry Baryshkov2020-03-251-1/+0
| | | | | gost/gost.h will go into include/openssl/, no need to duplicate it into crypto/gost directory Signed-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
* Crypto target properties when building static libsDan Nestor2020-03-021-11/+9
|
* remove extra cms in cmacBrent Cook2019-11-031-3/+3
|
* add cms to portable buildBrent Cook2019-11-032-3/+35
|
* initial support for midipixØrjan Malde2019-10-201-0/+3
|
* remove duplicate copy of public headerBrent Cook2019-09-091-1/+0
|
* update portable for latest build changesBrent Cook2019-09-092-0/+5
|
* Use posix_win.c functions on WIN32kinichiro2019-07-281-3/+6
| | | | | | - read() returns bytes count as 1 for crlf unless binary mode isn't specified with open(). Reported by @ulfworsoe in libressl-portable#542 - err could be WSANOTINITIALISED when WSAStartup() is not called
* default to a directory that is not world-creatableBrent Cook2019-06-121-1/+1
|
* sigh, add back the quotes for CBrent Cook2019-06-101-1/+1
|
* use something else by default for Windows builds (match dist-win.sh)Brent Cook2019-06-101-2/+6
|
* let cmake handle quoting itselfBrent Cook2019-06-101-2/+2
|
* Fix masm buildkinichiro2019-06-101-1/+5
| | | | | | - Fix masm operators and comments - Add -DOPENSSL_NO_ASM only if not 64 bit build - Add -DCMAKE_INSTALL_PREFIX to avoid build error
* Enable masm compilation under windowsStephan Vedder2019-06-101-1/+1
|
* condense android comments for clarityBrent Cook2019-05-231-13/+6
|
* Remove info about glibcIshimoto Shinobu2019-05-221-2/+0
|
* avoid glibcIshimoto Shinobu2019-05-211-3/+1
| | | cause problems on musl systems
* Fix getprogname_linux.c for Android API < 21Simone Basso2019-05-041-0/+25
| | | | | | | This diff fixes the build of LibreSSL for Android with API < 21 where the `getprogname` system call was not part of libc. A comment in the diff itself explains in detail the issue.
* Add portable scaffold for SM4Daniel Wyatt2019-03-042-0/+6
|
* add unimpl fallback for getprognameBrent Cook2019-02-033-1/+13
|
* export getuid for libtlsBrent Cook2019-02-011-0/+1
|
* update cmakeBrent Cook2019-01-311-0/+12
|
* update autoconf for latest compat functionsBrent Cook2019-01-315-0/+62
|
* more masm fixes, but disable for nowBrent Cook2019-01-211-1/+1
|
* a couple of fixes to get MSVC Win64 going againBrent Cook2019-01-211-1/+1
|
* fixes to build asm on MSVSBrent Cook2019-01-211-1/+1
|
* adjust asm exclusionsBrent Cook2019-01-201-4/+13
|
* remove xcode annotations for windowsBrent Cook2019-01-201-2/+0
|