2014-07-10 06:21:51 -05:00
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
|
2021-11-27 22:12:11 +09:00
|
|
|
AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL
|
2015-10-11 16:46:55 -07:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1
|
2022-01-12 20:04:53 +09:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/bio
|
2017-01-22 19:55:54 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn
|
2021-12-11 21:00:55 +09:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/bytestring
|
2022-11-22 18:41:54 +01:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/curve25519
|
2022-01-12 20:04:53 +09:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/dh
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/dsa
|
2019-01-19 04:33:03 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec
|
2019-09-09 22:00:57 -05:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh
|
2019-01-19 05:08:40 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa
|
2015-10-11 16:46:55 -07:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
|
2021-12-15 03:32:25 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac
|
2015-10-11 16:46:55 -07:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
|
2022-01-12 20:04:53 +09:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ocsp
|
2022-08-29 08:42:43 -05:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/pkcs12
|
2022-01-12 20:04:53 +09:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/rsa
|
2023-04-16 13:59:37 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/sha
|
2021-11-08 07:33:50 -06:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/x509
|
2016-05-02 22:46:25 -05:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto
|
2014-07-10 06:21:51 -05:00
|
|
|
|
2021-04-05 02:32:35 -05:00
|
|
|
noinst_LTLIBRARIES = libcompat.la
|
|
|
|
|
|
|
|
if ENABLE_LIBTLS_ONLY
|
|
|
|
noinst_LTLIBRARIES += libcrypto.la
|
|
|
|
else
|
2014-07-10 06:21:51 -05:00
|
|
|
lib_LTLIBRARIES = libcrypto.la
|
2021-04-05 02:32:35 -05:00
|
|
|
endif
|
2014-07-10 06:21:51 -05:00
|
|
|
|
2014-12-06 18:59:25 -06:00
|
|
|
EXTRA_DIST = VERSION
|
2014-07-10 22:06:10 -05:00
|
|
|
EXTRA_DIST += CMakeLists.txt
|
2017-01-15 18:09:13 +09:00
|
|
|
EXTRA_DIST += crypto.sym
|
2022-12-13 05:44:07 -06:00
|
|
|
EXTRA_DIST += empty.c
|
2014-12-06 18:59:25 -06:00
|
|
|
|
2015-09-07 01:28:29 -05:00
|
|
|
# needed for a CMake target
|
|
|
|
EXTRA_DIST += compat/strcasecmp.c
|
|
|
|
|
2017-04-10 09:30:29 -05:00
|
|
|
BUILT_SOURCES = crypto_portable.sym
|
|
|
|
CLEANFILES = crypto_portable.sym
|
2020-09-20 13:37:52 +09:00
|
|
|
CLEANFILES += libcrypto_la_objects.mk
|
2017-04-10 09:30:29 -05:00
|
|
|
|
2020-03-31 15:03:44 +03:00
|
|
|
crypto_portable.sym: crypto.sym Makefile
|
2017-07-08 17:46:16 -05:00
|
|
|
-echo "generating crypto_portable.sym ..."
|
|
|
|
-cp $(top_srcdir)/crypto/crypto.sym crypto_portable.sym
|
|
|
|
-chmod u+w crypto_portable.sym
|
|
|
|
if HOST_WIN
|
|
|
|
-grep -v BIO_s_log crypto_portable.sym > crypto_portable.sym.tmp
|
|
|
|
-mv crypto_portable.sym.tmp crypto_portable.sym
|
|
|
|
endif
|
|
|
|
|
2020-09-20 13:37:52 +09:00
|
|
|
libcrypto_la_objects.mk: Makefile
|
|
|
|
@echo "libcrypto_la_objects= $(libcrypto_la_OBJECTS)" \
|
|
|
|
| sed 's/ */ $$\(abs_top_builddir\)\/crypto\//g' \
|
|
|
|
> libcrypto_la_objects.mk
|
|
|
|
@echo "libcompat_la_objects= $(libcompat_la_OBJECTS)" \
|
2020-10-18 22:14:03 -05:00
|
|
|
| sed 's/compat\// $$\(abs_top_builddir\)\/crypto\/&/g' \
|
2020-09-20 13:37:52 +09:00
|
|
|
>> libcrypto_la_objects.mk
|
|
|
|
@echo "libcompatnoopt_la_objects= $(libcompatnoopt_la_OBJECTS)" \
|
2020-10-18 22:14:03 -05:00
|
|
|
| sed 's/compat\// $$\(abs_top_builddir\)\/crypto\/&/g' \
|
2020-09-20 13:37:52 +09:00
|
|
|
>> libcrypto_la_objects.mk
|
|
|
|
|
2017-04-10 09:30:29 -05:00
|
|
|
libcrypto_la_LDFLAGS = -version-info @LIBCRYPTO_VERSION@ -no-undefined -export-symbols crypto_portable.sym
|
2020-03-31 15:03:44 +03:00
|
|
|
EXTRA_libcrypto_la_DEPENDENCIES = crypto_portable.sym
|
2020-09-20 13:37:52 +09:00
|
|
|
EXTRA_libcrypto_la_DEPENDENCIES += libcrypto_la_objects.mk
|
2015-11-22 17:23:21 -06:00
|
|
|
libcrypto_la_LIBADD = libcompat.la
|
|
|
|
if !HAVE_EXPLICIT_BZERO
|
|
|
|
libcrypto_la_LIBADD += libcompatnoopt.la
|
|
|
|
endif
|
2023-02-28 01:51:41 -06:00
|
|
|
libcrypto_la_CPPFLAGS = -I$(top_srcdir)/crypto/hidden ${AM_CPPFLAGS}
|
2015-10-11 16:46:55 -07:00
|
|
|
libcrypto_la_CPPFLAGS += -DLIBRESSL_INTERNAL
|
2015-07-15 19:17:27 -05:00
|
|
|
libcrypto_la_CPPFLAGS += -DOPENSSL_NO_HW_PADLOCK
|
2014-07-10 06:21:51 -05:00
|
|
|
|
2015-07-15 20:00:21 -05:00
|
|
|
if OPENSSLDIR_DEFINED
|
|
|
|
libcrypto_la_CPPFLAGS += -DOPENSSLDIR=\"@OPENSSLDIR@\"
|
|
|
|
else
|
|
|
|
libcrypto_la_CPPFLAGS += -DOPENSSLDIR=\"$(sysconfdir)/ssl\"
|
|
|
|
endif
|
|
|
|
|
2014-07-10 06:21:51 -05:00
|
|
|
# compatibility functions that need to be built without optimizations
|
2015-11-22 17:23:21 -06:00
|
|
|
if !HAVE_EXPLICIT_BZERO
|
|
|
|
noinst_LTLIBRARIES += libcompatnoopt.la
|
|
|
|
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompatnoopt_la_CFLAGS = -O0
|
2014-07-21 07:50:32 -05:00
|
|
|
libcompatnoopt_la_SOURCES =
|
|
|
|
|
2015-08-03 06:56:59 -05:00
|
|
|
if HOST_WIN
|
|
|
|
libcompatnoopt_la_SOURCES += compat/explicit_bzero_win.c
|
|
|
|
else
|
2014-07-21 07:50:32 -05:00
|
|
|
libcompatnoopt_la_SOURCES += compat/explicit_bzero.c
|
|
|
|
endif
|
2015-08-03 06:56:59 -05:00
|
|
|
endif
|
2014-07-10 06:21:51 -05:00
|
|
|
|
|
|
|
# other compatibility functions
|
|
|
|
libcompat_la_SOURCES =
|
2014-07-12 03:34:08 -05:00
|
|
|
libcompat_la_LIBADD = $(PLATFORM_LDADD)
|
2014-07-10 06:21:51 -05:00
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_STRLCAT
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompat_la_SOURCES += compat/strlcat.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_STRLCPY
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompat_la_SOURCES += compat/strlcpy.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_STRNDUP
|
2014-07-27 06:11:56 -05:00
|
|
|
libcompat_la_SOURCES += compat/strndup.c
|
2014-10-29 15:44:36 -05:00
|
|
|
# the only user of strnlen is strndup, so only build it if needed
|
|
|
|
if !HAVE_STRNLEN
|
2014-07-27 06:11:56 -05:00
|
|
|
libcompat_la_SOURCES += compat/strnlen.c
|
|
|
|
endif
|
2014-08-02 21:43:56 -05:00
|
|
|
endif
|
2014-07-27 06:11:56 -05:00
|
|
|
|
2017-01-25 19:37:29 +09:00
|
|
|
if !HAVE_STRSEP
|
|
|
|
libcompat_la_SOURCES += compat/strsep.c
|
|
|
|
endif
|
|
|
|
|
2021-12-26 15:42:47 +09:00
|
|
|
if !HAVE_STRTONUM
|
|
|
|
libcompat_la_SOURCES += compat/strtonum.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_ASPRINTF
|
2014-07-30 06:53:02 -05:00
|
|
|
libcompat_la_SOURCES += compat/bsd-asprintf.c
|
2014-07-28 19:26:15 -05:00
|
|
|
endif
|
|
|
|
|
2017-04-22 23:08:17 +09:00
|
|
|
if !HAVE_FREEZERO
|
|
|
|
libcompat_la_SOURCES += compat/freezero.c
|
|
|
|
endif
|
|
|
|
|
2017-03-15 21:02:22 +09:00
|
|
|
if !HAVE_GETPAGESIZE
|
|
|
|
libcompat_la_SOURCES += compat/getpagesize.c
|
|
|
|
endif
|
|
|
|
|
2019-01-31 09:45:56 -06:00
|
|
|
if !HAVE_GETPROGNAME
|
|
|
|
if HOST_LINUX
|
|
|
|
libcompat_la_SOURCES += compat/getprogname_linux.c
|
2019-02-03 18:50:14 -06:00
|
|
|
else
|
2019-01-31 09:45:56 -06:00
|
|
|
if HOST_WIN
|
|
|
|
libcompat_la_SOURCES += compat/getprogname_windows.c
|
2019-02-03 18:50:14 -06:00
|
|
|
else
|
|
|
|
libcompat_la_SOURCES += compat/getprogname_unimpl.c
|
|
|
|
endif
|
2019-01-31 09:45:56 -06:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-10-14 23:53:52 -05:00
|
|
|
if !HAVE_TIMEGM
|
|
|
|
libcompat_la_SOURCES += compat/timegm.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_REALLOCARRAY
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompat_la_SOURCES += compat/reallocarray.c
|
|
|
|
endif
|
|
|
|
|
2017-03-09 22:49:04 +09:00
|
|
|
if !HAVE_RECALLOCARRAY
|
|
|
|
libcompat_la_SOURCES += compat/recallocarray.c
|
|
|
|
endif
|
|
|
|
|
2019-01-31 09:45:56 -06:00
|
|
|
if !HAVE_SYSLOG_R
|
|
|
|
libcompat_la_SOURCES += compat/syslog_r.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_TIMINGSAFE_MEMCMP
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompat_la_SOURCES += compat/timingsafe_memcmp.c
|
|
|
|
endif
|
|
|
|
|
2014-10-29 15:44:36 -05:00
|
|
|
if !HAVE_TIMINGSAFE_BCMP
|
2014-07-10 06:21:51 -05:00
|
|
|
libcompat_la_SOURCES += compat/timingsafe_bcmp.c
|
|
|
|
endif
|
|
|
|
|
2015-06-05 04:31:56 -05:00
|
|
|
if HOST_WIN
|
|
|
|
libcompat_la_SOURCES += compat/posix_win.c
|
|
|
|
endif
|
|
|
|
|
2015-05-02 01:40:33 -05:00
|
|
|
include Makefile.am.arc4random
|
2014-11-19 22:02:17 -06:00
|
|
|
|
2014-07-10 06:21:51 -05:00
|
|
|
libcrypto_la_SOURCES =
|
|
|
|
EXTRA_libcrypto_la_SOURCES =
|
2014-11-19 22:02:17 -06:00
|
|
|
|
2018-11-11 02:08:55 -06:00
|
|
|
include Makefile.am.elf-arm
|
2023-03-23 06:07:31 -05:00
|
|
|
include Makefile.am.elf-mips
|
|
|
|
include Makefile.am.elf-mips64
|
2014-12-06 18:43:58 -06:00
|
|
|
include Makefile.am.elf-x86_64
|
|
|
|
include Makefile.am.macosx-x86_64
|
2019-01-20 19:56:07 -06:00
|
|
|
include Makefile.am.masm-x86_64
|
|
|
|
include Makefile.am.mingw64-x86_64
|
2014-12-06 18:43:58 -06:00
|
|
|
|
2018-11-11 02:08:55 -06:00
|
|
|
if !HOST_ASM_ELF_ARM
|
2023-03-23 06:07:31 -05:00
|
|
|
if !HOST_ASM_ELF_MIPS
|
|
|
|
if !HOST_ASM_ELF_MIPS64
|
2014-12-06 18:43:58 -06:00
|
|
|
if !HOST_ASM_ELF_X86_64
|
|
|
|
if !HOST_ASM_MACOSX_X86_64
|
2019-01-20 19:56:07 -06:00
|
|
|
if !HOST_ASM_MASM_X86_64
|
|
|
|
if !HOST_ASM_MINGW64_X86_64
|
2023-03-23 06:07:31 -05:00
|
|
|
libcrypto_la_CPPFLAGS += -DOPENSSL_NO_ASM
|
2014-12-06 18:43:58 -06:00
|
|
|
libcrypto_la_SOURCES += aes/aes_cbc.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_core.c
|
|
|
|
libcrypto_la_SOURCES += camellia/camellia.c
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_cbc.c
|
|
|
|
libcrypto_la_SOURCES += rc4/rc4_enc.c
|
|
|
|
libcrypto_la_SOURCES += rc4/rc4_skey.c
|
|
|
|
libcrypto_la_SOURCES += whrlpool/wp_block.c
|
|
|
|
endif
|
|
|
|
endif
|
2018-11-11 02:08:55 -06:00
|
|
|
endif
|
2019-01-20 19:56:07 -06:00
|
|
|
endif
|
|
|
|
endif
|
2023-03-23 06:07:31 -05:00
|
|
|
endif
|
|
|
|
endif
|
2014-12-06 18:43:58 -06:00
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += cpt_err.c
|
|
|
|
libcrypto_la_SOURCES += cryptlib.c
|
2018-03-18 10:37:10 -05:00
|
|
|
libcrypto_la_SOURCES += crypto_init.c
|
2018-11-11 09:14:00 -06:00
|
|
|
if !HOST_WIN
|
|
|
|
libcrypto_la_SOURCES += crypto_lock.c
|
|
|
|
else
|
2019-01-01 08:06:20 -06:00
|
|
|
libcrypto_la_SOURCES += compat/crypto_lock_win.c
|
2018-11-11 09:14:00 -06:00
|
|
|
endif
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += cversion.c
|
|
|
|
libcrypto_la_SOURCES += ex_data.c
|
|
|
|
libcrypto_la_SOURCES += malloc-wrapper.c
|
|
|
|
libcrypto_la_SOURCES += mem_clr.c
|
|
|
|
libcrypto_la_SOURCES += mem_dbg.c
|
2021-11-08 13:09:53 -06:00
|
|
|
libcrypto_la_SOURCES += o_fips.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += o_init.c
|
|
|
|
libcrypto_la_SOURCES += o_str.c
|
2019-01-04 01:08:15 +09:00
|
|
|
noinst_HEADERS += arm_arch.h
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += constant_time.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += cryptlib.h
|
2023-04-12 15:16:36 -06:00
|
|
|
noinst_HEADERS += crypto_internal.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += md32_common.h
|
2016-11-05 05:21:29 -05:00
|
|
|
noinst_HEADERS += x86_arch.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# aes
|
|
|
|
libcrypto_la_SOURCES += aes/aes_cfb.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_ctr.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_ecb.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_ige.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_misc.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_ofb.c
|
|
|
|
libcrypto_la_SOURCES += aes/aes_wrap.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += aes/aes_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# asn1
|
|
|
|
libcrypto_la_SOURCES += asn1/a_bitstr.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_enum.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_int.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_mbstr.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_object.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_octet.c
|
2021-12-09 19:59:29 +09:00
|
|
|
libcrypto_la_SOURCES += asn1/a_pkey.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_print.c
|
2021-12-19 20:31:26 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_pubkey.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_strex.c
|
2021-12-19 20:31:26 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_string.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_strnid.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_time.c
|
2022-11-22 18:41:54 +01:00
|
|
|
libcrypto_la_SOURCES += asn1/a_time_posix.c
|
2015-10-06 06:18:15 -05:00
|
|
|
libcrypto_la_SOURCES += asn1/a_time_tm.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/a_type.c
|
|
|
|
libcrypto_la_SOURCES += asn1/a_utf8.c
|
|
|
|
libcrypto_la_SOURCES += asn1/ameth_lib.c
|
|
|
|
libcrypto_la_SOURCES += asn1/asn1_err.c
|
|
|
|
libcrypto_la_SOURCES += asn1/asn1_gen.c
|
2022-01-12 20:04:53 +09:00
|
|
|
libcrypto_la_SOURCES += asn1/asn1_item.c
|
|
|
|
libcrypto_la_SOURCES += asn1/asn1_lib.c
|
|
|
|
libcrypto_la_SOURCES += asn1/asn1_old.c
|
2021-12-19 20:31:26 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/asn1_old_lib.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/asn1_par.c
|
2021-12-19 20:31:26 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/asn1_types.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += asn1/asn_mime.c
|
|
|
|
libcrypto_la_SOURCES += asn1/asn_moid.c
|
|
|
|
libcrypto_la_SOURCES += asn1/bio_asn1.c
|
|
|
|
libcrypto_la_SOURCES += asn1/bio_ndef.c
|
|
|
|
libcrypto_la_SOURCES += asn1/p5_pbe.c
|
|
|
|
libcrypto_la_SOURCES += asn1/p5_pbev2.c
|
|
|
|
libcrypto_la_SOURCES += asn1/p8_pkey.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_crl.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_pkey.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_req.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_spki.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_x509.c
|
|
|
|
libcrypto_la_SOURCES += asn1/t_x509a.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_dec.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_enc.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_fre.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_new.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_prn.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_typ.c
|
|
|
|
libcrypto_la_SOURCES += asn1/tasn_utl.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_algor.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_attrib.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_bignum.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_crl.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_exten.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_info.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_long.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_name.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_pkey.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_pubkey.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_req.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_sig.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_spki.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_val.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_x509.c
|
|
|
|
libcrypto_la_SOURCES += asn1/x_x509a.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += asn1/asn1_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += asn1/charmap.h
|
|
|
|
|
|
|
|
# bf
|
|
|
|
libcrypto_la_SOURCES += bf/bf_cfb64.c
|
|
|
|
libcrypto_la_SOURCES += bf/bf_ecb.c
|
|
|
|
libcrypto_la_SOURCES += bf/bf_enc.c
|
|
|
|
libcrypto_la_SOURCES += bf/bf_ofb64.c
|
|
|
|
libcrypto_la_SOURCES += bf/bf_skey.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += bf/bf_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# bio
|
|
|
|
libcrypto_la_SOURCES += bio/b_dump.c
|
|
|
|
if !HOST_WIN
|
|
|
|
libcrypto_la_SOURCES += bio/b_posix.c
|
|
|
|
endif
|
|
|
|
libcrypto_la_SOURCES += bio/b_print.c
|
|
|
|
libcrypto_la_SOURCES += bio/b_sock.c
|
|
|
|
if HOST_WIN
|
|
|
|
libcrypto_la_SOURCES += bio/b_win.c
|
|
|
|
endif
|
|
|
|
libcrypto_la_SOURCES += bio/bf_buff.c
|
|
|
|
libcrypto_la_SOURCES += bio/bf_nbio.c
|
|
|
|
libcrypto_la_SOURCES += bio/bf_null.c
|
|
|
|
libcrypto_la_SOURCES += bio/bio_cb.c
|
|
|
|
libcrypto_la_SOURCES += bio/bio_err.c
|
|
|
|
libcrypto_la_SOURCES += bio/bio_lib.c
|
2018-02-25 01:42:03 +09:00
|
|
|
libcrypto_la_SOURCES += bio/bio_meth.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bio/bss_acpt.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_bio.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_conn.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_dgram.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_fd.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_file.c
|
2014-07-10 22:06:10 -05:00
|
|
|
if !HOST_WIN
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bio/bss_log.c
|
2014-07-10 22:06:10 -05:00
|
|
|
endif
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bio/bss_mem.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_null.c
|
|
|
|
libcrypto_la_SOURCES += bio/bss_sock.c
|
2022-01-12 20:04:53 +09:00
|
|
|
noinst_HEADERS += bio/bio_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# bn
|
|
|
|
libcrypto_la_SOURCES += bn/bn_add.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_blind.c
|
2022-07-31 23:31:18 -05:00
|
|
|
libcrypto_la_SOURCES += bn/bn_bpsw.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_const.c
|
2023-04-14 07:15:25 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_convert.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_ctx.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_div.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_err.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_exp.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_gcd.c
|
2022-07-31 23:31:18 -05:00
|
|
|
libcrypto_la_SOURCES += bn/bn_isqrt.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_kron.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_lib.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_mod.c
|
2023-04-11 06:11:08 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_mod_sqrt.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_mont.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_mul.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_prime.c
|
2023-06-21 02:31:32 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_primitives.c
|
2023-07-07 10:14:29 +02:00
|
|
|
libcrypto_la_SOURCES += bn/bn_print.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_rand.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_recp.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_shift.c
|
2022-11-22 18:41:54 +01:00
|
|
|
libcrypto_la_SOURCES += bn/bn_small_primes.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += bn/bn_sqr.c
|
|
|
|
libcrypto_la_SOURCES += bn/bn_word.c
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/bn_internal.h
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += bn/bn_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += bn/bn_prime.h
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/s2n_bignum.h
|
|
|
|
noinst_HEADERS += bn/s2n_bignum_internal.h
|
|
|
|
|
|
|
|
# bn/arch
|
2023-02-14 02:52:10 -06:00
|
|
|
if HOST_AARCH64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/aarch64/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/aarch64/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_ARM
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/arm/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/arm/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_I386
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/i386/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/i386/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
2023-03-23 06:07:31 -05:00
|
|
|
if HOST_MIPS
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips/
|
|
|
|
endif
|
|
|
|
noinst_HEADERS += bn/arch/mips/bn_arch.h
|
|
|
|
|
2023-02-14 02:52:10 -06:00
|
|
|
if HOST_MIPS64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips64/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/mips64/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_POWERPC
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/powerpc/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_POWERPC64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc64/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/powerpc64/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_RISCV64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/riscv64/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/riscv64/bn_arch.h
|
2023-02-14 02:52:10 -06:00
|
|
|
|
|
|
|
if HOST_SPARC64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/sparc64/
|
|
|
|
endif
|
2023-02-09 18:45:55 +01:00
|
|
|
noinst_HEADERS += bn/arch/sparc64/bn_arch.h
|
|
|
|
|
2023-02-14 02:52:10 -06:00
|
|
|
if HOST_X86_64
|
|
|
|
libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/amd64/
|
|
|
|
endif
|
|
|
|
noinst_HEADERS += bn/arch/amd64/bn_arch.h
|
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
# buffer
|
|
|
|
libcrypto_la_SOURCES += buffer/buf_err.c
|
|
|
|
libcrypto_la_SOURCES += buffer/buf_str.c
|
|
|
|
libcrypto_la_SOURCES += buffer/buffer.c
|
2021-12-11 21:00:55 +09:00
|
|
|
noinst_HEADERS += bytestring/bytestring.h
|
|
|
|
|
|
|
|
# bytestring
|
|
|
|
libcrypto_la_SOURCES += bytestring/bs_ber.c
|
|
|
|
libcrypto_la_SOURCES += bytestring/bs_cbb.c
|
|
|
|
libcrypto_la_SOURCES += bytestring/bs_cbs.c
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# camellia
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_cfb.c
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_ctr.c
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_ecb.c
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_misc.c
|
|
|
|
libcrypto_la_SOURCES += camellia/cmll_ofb.c
|
|
|
|
noinst_HEADERS += camellia/camellia.h
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += camellia/cmll_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# cast
|
|
|
|
libcrypto_la_SOURCES += cast/c_cfb64.c
|
|
|
|
libcrypto_la_SOURCES += cast/c_ecb.c
|
|
|
|
libcrypto_la_SOURCES += cast/c_enc.c
|
|
|
|
libcrypto_la_SOURCES += cast/c_ofb64.c
|
|
|
|
libcrypto_la_SOURCES += cast/c_skey.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += cast/cast_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += cast/cast_s.h
|
|
|
|
|
|
|
|
# chacha
|
|
|
|
EXTRA_libcrypto_la_SOURCES += chacha/chacha-merged.c
|
|
|
|
libcrypto_la_SOURCES += chacha/chacha.c
|
|
|
|
|
|
|
|
# cmac
|
2019-11-03 06:47:45 -06:00
|
|
|
libcrypto_la_SOURCES += cmac/cm_ameth.c
|
|
|
|
libcrypto_la_SOURCES += cmac/cm_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += cmac/cmac.c
|
2019-11-03 06:24:47 -06:00
|
|
|
|
|
|
|
# cms
|
|
|
|
libcrypto_la_SOURCES += cms/cms_asn1.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_att.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_dd.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_enc.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_env.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_err.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_ess.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_io.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_kari.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_lib.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_pwri.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_sd.c
|
|
|
|
libcrypto_la_SOURCES += cms/cms_smime.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += cms/cms_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# comp
|
|
|
|
libcrypto_la_SOURCES += comp/c_rle.c
|
|
|
|
libcrypto_la_SOURCES += comp/c_zlib.c
|
|
|
|
libcrypto_la_SOURCES += comp/comp_err.c
|
|
|
|
libcrypto_la_SOURCES += comp/comp_lib.c
|
2022-01-12 20:04:53 +09:00
|
|
|
noinst_HEADERS += comp/comp_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# conf
|
|
|
|
libcrypto_la_SOURCES += conf/conf_api.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_def.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_err.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_lib.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_mall.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_mod.c
|
|
|
|
libcrypto_la_SOURCES += conf/conf_sap.c
|
|
|
|
noinst_HEADERS += conf/conf_def.h
|
|
|
|
|
2021-11-27 22:12:11 +09:00
|
|
|
# ct
|
|
|
|
libcrypto_la_SOURCES += ct/ct_b64.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_err.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_log.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_oct.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_policy.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_prn.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_sct.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_sct_ctx.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_vfy.c
|
|
|
|
libcrypto_la_SOURCES += ct/ct_x509v3.c
|
|
|
|
noinst_HEADERS += ct/ct_local.h
|
|
|
|
|
2016-11-06 04:57:23 +09:00
|
|
|
# curve25519
|
|
|
|
libcrypto_la_SOURCES += curve25519/curve25519-generic.c
|
|
|
|
libcrypto_la_SOURCES += curve25519/curve25519.c
|
|
|
|
noinst_HEADERS += curve25519/curve25519_internal.h
|
|
|
|
|
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
# des
|
|
|
|
libcrypto_la_SOURCES += des/cbc_cksm.c
|
|
|
|
libcrypto_la_SOURCES += des/cbc_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/cfb64ede.c
|
|
|
|
libcrypto_la_SOURCES += des/cfb64enc.c
|
|
|
|
libcrypto_la_SOURCES += des/cfb_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/des_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/ecb3_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/ecb_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/ede_cbcm_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/enc_read.c
|
|
|
|
libcrypto_la_SOURCES += des/enc_writ.c
|
|
|
|
libcrypto_la_SOURCES += des/fcrypt.c
|
|
|
|
libcrypto_la_SOURCES += des/fcrypt_b.c
|
|
|
|
EXTRA_libcrypto_la_SOURCES += des/ncbc_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/ofb64ede.c
|
|
|
|
libcrypto_la_SOURCES += des/ofb64enc.c
|
|
|
|
libcrypto_la_SOURCES += des/ofb_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/pcbc_enc.c
|
|
|
|
libcrypto_la_SOURCES += des/qud_cksm.c
|
|
|
|
libcrypto_la_SOURCES += des/rand_key.c
|
|
|
|
libcrypto_la_SOURCES += des/set_key.c
|
|
|
|
libcrypto_la_SOURCES += des/str2key.c
|
|
|
|
libcrypto_la_SOURCES += des/xcbc_enc.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += des/des_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
noinst_HEADERS += des/spr.h
|
|
|
|
|
|
|
|
# dh
|
|
|
|
libcrypto_la_SOURCES += dh/dh_ameth.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_asn1.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_check.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_err.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_gen.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_key.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_lib.c
|
|
|
|
libcrypto_la_SOURCES += dh/dh_pmeth.c
|
2022-01-12 20:04:53 +09:00
|
|
|
noinst_HEADERS += dh/dh_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# dsa
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_ameth.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_asn1.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_err.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_gen.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_key.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_lib.c
|
2018-03-18 10:37:10 -05:00
|
|
|
libcrypto_la_SOURCES += dsa/dsa_meth.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += dsa/dsa_ossl.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += dsa/dsa_prn.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += dsa/dsa_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# dso
|
|
|
|
libcrypto_la_SOURCES += dso/dso_dlfcn.c
|
|
|
|
libcrypto_la_SOURCES += dso/dso_err.c
|
|
|
|
libcrypto_la_SOURCES += dso/dso_lib.c
|
|
|
|
libcrypto_la_SOURCES += dso/dso_null.c
|
|
|
|
libcrypto_la_SOURCES += dso/dso_openssl.c
|
|
|
|
|
|
|
|
# ec
|
|
|
|
libcrypto_la_SOURCES += ec/ec_ameth.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_asn1.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_check.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_curve.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_cvt.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_err.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_key.c
|
2019-01-19 05:08:40 -06:00
|
|
|
libcrypto_la_SOURCES += ec/ec_kmeth.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += ec/ec_lib.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_mult.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_oct.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += ec/ec_print.c
|
|
|
|
libcrypto_la_SOURCES += ec/eck_prn.c
|
|
|
|
libcrypto_la_SOURCES += ec/ecp_mont.c
|
|
|
|
libcrypto_la_SOURCES += ec/ecp_oct.c
|
|
|
|
libcrypto_la_SOURCES += ec/ecp_smpl.c
|
2022-11-22 18:41:54 +01:00
|
|
|
libcrypto_la_SOURCES += ec/ecx_methods.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += ec/ec_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# ecdh
|
2023-07-05 05:40:45 -06:00
|
|
|
libcrypto_la_SOURCES += ecdh/ecdh.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += ecdh/ech_err.c
|
|
|
|
libcrypto_la_SOURCES += ecdh/ech_lib.c
|
|
|
|
|
|
|
|
# ecdsa
|
2023-07-05 05:40:45 -06:00
|
|
|
libcrypto_la_SOURCES += ecdsa/ecdsa.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += ecdsa/ecs_err.c
|
|
|
|
libcrypto_la_SOURCES += ecdsa/ecs_lib.c
|
2023-07-05 05:40:45 -06:00
|
|
|
noinst_HEADERS += ecdsa/ecdsa_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# engine
|
|
|
|
libcrypto_la_SOURCES += engine/eng_all.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_cnf.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_ctrl.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_dyn.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_err.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_fat.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_init.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_lib.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_list.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_openssl.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_pkey.c
|
|
|
|
libcrypto_la_SOURCES += engine/eng_table.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_asnmth.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_cipher.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_dh.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_digest.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_dsa.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_ecdh.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_ecdsa.c
|
2019-01-19 05:08:40 -06:00
|
|
|
libcrypto_la_SOURCES += engine/tb_eckey.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += engine/tb_pkmeth.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_rand.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_rsa.c
|
|
|
|
libcrypto_la_SOURCES += engine/tb_store.c
|
|
|
|
noinst_HEADERS += engine/eng_int.h
|
|
|
|
|
|
|
|
# err
|
|
|
|
libcrypto_la_SOURCES += err/err.c
|
|
|
|
libcrypto_la_SOURCES += err/err_all.c
|
|
|
|
libcrypto_la_SOURCES += err/err_prn.c
|
|
|
|
|
|
|
|
# evp
|
|
|
|
libcrypto_la_SOURCES += evp/bio_b64.c
|
|
|
|
libcrypto_la_SOURCES += evp/bio_enc.c
|
|
|
|
libcrypto_la_SOURCES += evp/bio_md.c
|
|
|
|
libcrypto_la_SOURCES += evp/c_all.c
|
2023-03-11 07:23:54 -07:00
|
|
|
libcrypto_la_SOURCES += evp/cipher_method_lib.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += evp/digest.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_aes.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_aes_cbc_hmac_sha1.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_bf.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_camellia.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_cast.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_chacha.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_chacha20poly1305.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_des.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_des3.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_gost2814789.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_idea.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_null.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_rc2.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_rc4.c
|
|
|
|
libcrypto_la_SOURCES += evp/e_rc4_hmac_md5.c
|
2019-03-02 12:32:12 -05:00
|
|
|
libcrypto_la_SOURCES += evp/e_sm4.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += evp/e_xcbc_d.c
|
|
|
|
libcrypto_la_SOURCES += evp/encode.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_aead.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_enc.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_err.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_key.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_lib.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_pbe.c
|
|
|
|
libcrypto_la_SOURCES += evp/evp_pkey.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_gost2814789.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_gostr341194.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_md4.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_md5.c
|
2017-03-01 00:49:38 +09:00
|
|
|
libcrypto_la_SOURCES += evp/m_md5_sha1.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += evp/m_null.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_ripemd.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_sha1.c
|
2023-04-17 01:07:45 -06:00
|
|
|
libcrypto_la_SOURCES += evp/m_sha3.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += evp/m_sigver.c
|
|
|
|
libcrypto_la_SOURCES += evp/m_streebog.c
|
2018-08-14 15:16:36 -04:00
|
|
|
libcrypto_la_SOURCES += evp/m_sm3.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += evp/m_wp.c
|
|
|
|
libcrypto_la_SOURCES += evp/names.c
|
|
|
|
libcrypto_la_SOURCES += evp/p5_crpt.c
|
|
|
|
libcrypto_la_SOURCES += evp/p5_crpt2.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_dec.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_enc.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_lib.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_open.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_seal.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_sign.c
|
|
|
|
libcrypto_la_SOURCES += evp/p_verify.c
|
|
|
|
libcrypto_la_SOURCES += evp/pmeth_fn.c
|
|
|
|
libcrypto_la_SOURCES += evp/pmeth_gn.c
|
|
|
|
libcrypto_la_SOURCES += evp/pmeth_lib.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += evp/evp_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# gost
|
|
|
|
libcrypto_la_SOURCES += gost/gost2814789.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost89_keywrap.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost89_params.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost89imit_ameth.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost89imit_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost_asn1.c
|
|
|
|
libcrypto_la_SOURCES += gost/gost_err.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341001.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341001_ameth.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341001_key.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341001_params.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341001_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += gost/gostr341194.c
|
|
|
|
libcrypto_la_SOURCES += gost/streebog.c
|
|
|
|
noinst_HEADERS += gost/gost_asn1.h
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += gost/gost_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
2022-11-22 18:41:54 +01:00
|
|
|
# hidden
|
|
|
|
noinst_HEADERS += hidden/crypto_namespace.h
|
2023-07-05 15:38:50 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/asn1.h
|
|
|
|
noinst_HEADERS += hidden/openssl/asn1t.h
|
|
|
|
noinst_HEADERS += hidden/openssl/bio.h
|
2023-07-08 05:40:49 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/bn.h
|
2023-07-08 01:36:33 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/buffer.h
|
2023-07-08 04:52:03 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/cast.h
|
2023-07-05 13:37:32 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/chacha.h
|
2023-07-08 08:24:54 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/cmac.h
|
2023-07-08 01:36:33 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/cms.h
|
|
|
|
noinst_HEADERS += hidden/openssl/comp.h
|
|
|
|
noinst_HEADERS += hidden/openssl/conf_api.h
|
2023-07-08 02:03:37 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/crypto.h
|
2023-07-08 01:33:04 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/ct.h
|
2023-07-08 08:24:54 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/dsa.h
|
2023-07-08 01:33:04 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/dso.h
|
2023-07-07 08:39:25 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/ec.h
|
2023-07-08 00:40:41 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/ecdh.h
|
2023-07-07 08:39:25 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/ecdsa.h
|
|
|
|
noinst_HEADERS += hidden/openssl/err.h
|
2023-07-08 08:24:54 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/gost.h
|
2023-07-07 08:39:25 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/hkdf.h
|
2022-11-22 18:41:54 +01:00
|
|
|
noinst_HEADERS += hidden/openssl/hmac.h
|
2023-07-08 04:52:03 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/idea.h
|
2023-07-07 06:43:37 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/lhash.h
|
2023-07-08 04:52:03 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/md4.h
|
|
|
|
noinst_HEADERS += hidden/openssl/md5.h
|
2023-07-08 06:20:34 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/objects.h
|
2023-07-08 08:23:38 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/ocsp.h
|
2023-07-07 06:43:37 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/pem.h
|
2022-11-22 18:41:54 +01:00
|
|
|
noinst_HEADERS += hidden/openssl/pkcs12.h
|
|
|
|
noinst_HEADERS += hidden/openssl/pkcs7.h
|
2023-07-07 06:02:57 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/poly1305.h
|
|
|
|
noinst_HEADERS += hidden/openssl/rand.h
|
2023-07-07 06:43:37 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/rc2.h
|
2023-07-08 06:20:34 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/rsa.h
|
|
|
|
noinst_HEADERS += hidden/openssl/sha.h
|
2023-07-08 00:40:41 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/sm3.h
|
2023-07-07 06:02:57 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/sm4.h
|
2022-11-22 18:41:54 +01:00
|
|
|
noinst_HEADERS += hidden/openssl/stack.h
|
2023-07-07 10:13:19 +02:00
|
|
|
noinst_HEADERS += hidden/openssl/ts.h
|
2023-07-08 05:27:37 -06:00
|
|
|
noinst_HEADERS += hidden/openssl/txt_db.h
|
2022-11-22 18:41:54 +01:00
|
|
|
noinst_HEADERS += hidden/openssl/ui.h
|
|
|
|
noinst_HEADERS += hidden/openssl/x509.h
|
|
|
|
noinst_HEADERS += hidden/openssl/x509_vfy.h
|
|
|
|
noinst_HEADERS += hidden/openssl/x509v3.h
|
|
|
|
|
2017-05-02 00:21:57 +09:00
|
|
|
# hkdf
|
|
|
|
libcrypto_la_SOURCES += hkdf/hkdf.c
|
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
# hmac
|
|
|
|
libcrypto_la_SOURCES += hmac/hm_ameth.c
|
|
|
|
libcrypto_la_SOURCES += hmac/hm_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += hmac/hmac.c
|
2021-12-15 03:32:25 -06:00
|
|
|
noinst_HEADERS += hmac/hmac_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# idea
|
|
|
|
libcrypto_la_SOURCES += idea/i_cbc.c
|
|
|
|
libcrypto_la_SOURCES += idea/i_cfb64.c
|
|
|
|
libcrypto_la_SOURCES += idea/i_ecb.c
|
|
|
|
libcrypto_la_SOURCES += idea/i_ofb64.c
|
|
|
|
libcrypto_la_SOURCES += idea/i_skey.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += idea/idea_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
2022-05-08 22:23:36 -05:00
|
|
|
# kdf
|
|
|
|
libcrypto_la_SOURCES += kdf/hkdf_evp.c
|
|
|
|
libcrypto_la_SOURCES += kdf/kdf_err.c
|
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
# lhash
|
|
|
|
libcrypto_la_SOURCES += lhash/lh_stats.c
|
|
|
|
libcrypto_la_SOURCES += lhash/lhash.c
|
|
|
|
|
|
|
|
# md4
|
|
|
|
libcrypto_la_SOURCES += md4/md4_dgst.c
|
|
|
|
libcrypto_la_SOURCES += md4/md4_one.c
|
|
|
|
|
|
|
|
# md5
|
|
|
|
libcrypto_la_SOURCES += md5/md5_dgst.c
|
|
|
|
libcrypto_la_SOURCES += md5/md5_one.c
|
|
|
|
|
|
|
|
# modes
|
|
|
|
libcrypto_la_SOURCES += modes/cbc128.c
|
|
|
|
libcrypto_la_SOURCES += modes/ccm128.c
|
|
|
|
libcrypto_la_SOURCES += modes/cfb128.c
|
|
|
|
libcrypto_la_SOURCES += modes/ctr128.c
|
|
|
|
libcrypto_la_SOURCES += modes/gcm128.c
|
|
|
|
libcrypto_la_SOURCES += modes/ofb128.c
|
|
|
|
libcrypto_la_SOURCES += modes/xts128.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += modes/modes_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# objects
|
|
|
|
libcrypto_la_SOURCES += objects/o_names.c
|
|
|
|
libcrypto_la_SOURCES += objects/obj_dat.c
|
|
|
|
libcrypto_la_SOURCES += objects/obj_err.c
|
|
|
|
libcrypto_la_SOURCES += objects/obj_lib.c
|
|
|
|
libcrypto_la_SOURCES += objects/obj_xref.c
|
|
|
|
noinst_HEADERS += objects/obj_dat.h
|
|
|
|
noinst_HEADERS += objects/obj_xref.h
|
|
|
|
|
|
|
|
# ocsp
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_asn.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_cl.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_err.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_ext.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_ht.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_lib.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_prn.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_srv.c
|
|
|
|
libcrypto_la_SOURCES += ocsp/ocsp_vfy.c
|
2022-01-12 20:04:53 +09:00
|
|
|
noinst_HEADERS += ocsp/ocsp_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# pem
|
|
|
|
libcrypto_la_SOURCES += pem/pem_all.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_err.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_info.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_lib.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_oth.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_pk8.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_pkey.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_sign.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_x509.c
|
|
|
|
libcrypto_la_SOURCES += pem/pem_xaux.c
|
|
|
|
libcrypto_la_SOURCES += pem/pvkfmt.c
|
|
|
|
|
|
|
|
# pkcs12
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_add.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_asn.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_attr.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_crpt.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_crt.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_decr.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_init.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_key.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_kiss.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_mutl.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_npas.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_p8d.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_p8e.c
|
2022-08-15 08:09:10 +02:00
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_sbag.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += pkcs12/p12_utl.c
|
|
|
|
libcrypto_la_SOURCES += pkcs12/pk12err.c
|
2022-08-29 08:42:43 -05:00
|
|
|
noinst_HEADERS += pkcs12/pkcs12_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# pkcs7
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_asn1.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_attr.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_doit.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_lib.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_mime.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pk7_smime.c
|
|
|
|
libcrypto_la_SOURCES += pkcs7/pkcs7err.c
|
|
|
|
|
|
|
|
# poly1305
|
|
|
|
EXTRA_libcrypto_la_SOURCES += poly1305/poly1305-donna.c
|
|
|
|
libcrypto_la_SOURCES += poly1305/poly1305.c
|
|
|
|
|
|
|
|
# rand
|
|
|
|
libcrypto_la_SOURCES += rand/rand_err.c
|
|
|
|
libcrypto_la_SOURCES += rand/rand_lib.c
|
|
|
|
libcrypto_la_SOURCES += rand/randfile.c
|
|
|
|
|
|
|
|
# rc2
|
|
|
|
libcrypto_la_SOURCES += rc2/rc2_cbc.c
|
|
|
|
libcrypto_la_SOURCES += rc2/rc2_ecb.c
|
|
|
|
libcrypto_la_SOURCES += rc2/rc2_skey.c
|
|
|
|
libcrypto_la_SOURCES += rc2/rc2cfb64.c
|
|
|
|
libcrypto_la_SOURCES += rc2/rc2ofb64.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += rc2/rc2_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# rc4
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += rc4/rc4_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# ripemd
|
|
|
|
libcrypto_la_SOURCES += ripemd/rmd_dgst.c
|
|
|
|
libcrypto_la_SOURCES += ripemd/rmd_one.c
|
|
|
|
noinst_HEADERS += ripemd/rmdconst.h
|
|
|
|
|
|
|
|
# rsa
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_ameth.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_asn1.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_chk.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_crpt.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_eay.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_err.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_gen.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_lib.c
|
2018-03-18 10:37:10 -05:00
|
|
|
libcrypto_la_SOURCES += rsa/rsa_meth.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += rsa/rsa_none.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_oaep.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_pk1.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_pmeth.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_prn.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_pss.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_saos.c
|
|
|
|
libcrypto_la_SOURCES += rsa/rsa_sign.c
|
2023-05-05 06:42:50 -06:00
|
|
|
libcrypto_la_SOURCES += rsa/rsa_x931.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += rsa/rsa_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# sha
|
2023-04-11 06:11:08 -06:00
|
|
|
libcrypto_la_SOURCES += sha/sha1.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += sha/sha256.c
|
2023-04-17 01:07:45 -06:00
|
|
|
libcrypto_la_SOURCES += sha/sha3.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += sha/sha512.c
|
2023-04-14 07:15:25 -06:00
|
|
|
noinst_HEADERS += sha/sha_internal.h
|
2023-04-17 01:07:45 -06:00
|
|
|
noinst_HEADERS += sha/sha3_internal.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
2018-08-14 15:16:36 -04:00
|
|
|
# sm3
|
|
|
|
libcrypto_la_SOURCES += sm3/sm3.c
|
|
|
|
|
2019-03-02 12:32:12 -05:00
|
|
|
# sm4
|
|
|
|
libcrypto_la_SOURCES += sm4/sm4.c
|
|
|
|
|
2014-12-06 17:11:59 -06:00
|
|
|
# stack
|
|
|
|
libcrypto_la_SOURCES += stack/stack.c
|
|
|
|
|
|
|
|
# ts
|
|
|
|
libcrypto_la_SOURCES += ts/ts_asn1.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_conf.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_err.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_lib.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_req_print.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_req_utils.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_rsp_print.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_rsp_sign.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_rsp_utils.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_rsp_verify.c
|
|
|
|
libcrypto_la_SOURCES += ts/ts_verify_ctx.c
|
2022-07-31 23:31:18 -05:00
|
|
|
noinst_HEADERS += ts/ts_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# txt_db
|
|
|
|
libcrypto_la_SOURCES += txt_db/txt_db.c
|
|
|
|
|
|
|
|
# ui
|
|
|
|
libcrypto_la_SOURCES += ui/ui_err.c
|
|
|
|
libcrypto_la_SOURCES += ui/ui_lib.c
|
2022-12-18 00:19:26 +01:00
|
|
|
libcrypto_la_SOURCES += ui/ui_null.c
|
2014-12-06 17:11:59 -06:00
|
|
|
if !HOST_WIN
|
|
|
|
libcrypto_la_SOURCES += ui/ui_openssl.c
|
|
|
|
endif
|
|
|
|
if HOST_WIN
|
|
|
|
libcrypto_la_SOURCES += ui/ui_openssl_win.c
|
|
|
|
endif
|
|
|
|
libcrypto_la_SOURCES += ui/ui_util.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += ui/ui_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# whrlpool
|
|
|
|
libcrypto_la_SOURCES += whrlpool/wp_dgst.c
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += whrlpool/wp_local.h
|
2014-12-06 17:11:59 -06:00
|
|
|
|
|
|
|
# x509
|
|
|
|
libcrypto_la_SOURCES += x509/by_dir.c
|
|
|
|
libcrypto_la_SOURCES += x509/by_file.c
|
2015-01-26 10:20:26 -06:00
|
|
|
libcrypto_la_SOURCES += x509/by_mem.c
|
2021-09-08 03:23:09 -05:00
|
|
|
libcrypto_la_SOURCES += x509/x509_addr.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_akey.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_akeya.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_alt.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_att.c
|
2021-09-08 03:23:09 -05:00
|
|
|
libcrypto_la_SOURCES += x509/x509_asid.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_bcons.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_bitst.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_cmp.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_conf.c
|
2020-09-13 10:38:00 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_constraints.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_cpols.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_crld.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_d2.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_def.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_err.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_ext.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_extku.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_genn.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_ia5.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_info.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_int.c
|
2020-09-13 12:06:08 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_issuer_cache.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_lib.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_lu.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_ncons.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_obj.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_ocsp.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_pcons.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_pku.c
|
2023-04-26 13:18:17 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_policy.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_pmaps.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_prn.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_purp.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_r2x.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_req.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_set.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_skey.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_trs.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_txt.c
|
2020-06-06 01:34:59 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_utl.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_v3.c
|
2020-09-13 22:18:49 +09:00
|
|
|
libcrypto_la_SOURCES += x509/x509_verify.c
|
2014-12-06 17:11:59 -06:00
|
|
|
libcrypto_la_SOURCES += x509/x509_vfy.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509_vpm.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509cset.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509name.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509rset.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509spki.c
|
|
|
|
libcrypto_la_SOURCES += x509/x509type.c
|
|
|
|
libcrypto_la_SOURCES += x509/x_all.c
|
2020-09-13 10:38:00 +09:00
|
|
|
noinst_HEADERS += x509/x509_internal.h
|
2020-09-13 12:06:08 +09:00
|
|
|
noinst_HEADERS += x509/x509_issuer_cache.h
|
2022-11-27 10:11:51 +01:00
|
|
|
noinst_HEADERS += x509/x509_local.h
|
2023-02-09 18:45:33 +01:00
|
|
|
noinst_HEADERS += x509/x509_verify.h
|