diff options
author | Brent Cook <busterb@gmail.com> | 2021-11-29 07:39:24 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2021-11-29 07:39:24 -0600 |
commit | 22c6e3b6d5fb630bff076dd85a0b73fdb9fe6820 (patch) | |
tree | 25032c4d45682980285dcd410c110ac8416eaa4a /crypto | |
parent | e8ea73c247069e4e5592b31c0888a8ceb35f7773 (diff) | |
parent | 954948159a6ccdf47666f42b4d92f0ba77ca942c (diff) | |
download | portable-22c6e3b6d5fb630bff076dd85a0b73fdb9fe6820.tar.gz portable-22c6e3b6d5fb630bff076dd85a0b73fdb9fe6820.tar.bz2 portable-22c6e3b6d5fb630bff076dd85a0b73fdb9fe6820.zip |
Land #702: Add ct to libcrypto
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 10 | ||||
-rw-r--r-- | crypto/Makefile.am | 15 |
2 files changed, 25 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 72fe5a4..8cfa9fe 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -412,6 +412,16 @@ set( | |||
412 | conf/conf_mall.c | 412 | conf/conf_mall.c |
413 | conf/conf_mod.c | 413 | conf/conf_mod.c |
414 | conf/conf_sap.c | 414 | conf/conf_sap.c |
415 | ct/ct_b64.c | ||
416 | ct/ct_err.c | ||
417 | ct/ct_log.c | ||
418 | ct/ct_oct.c | ||
419 | ct/ct_policy.c | ||
420 | ct/ct_prn.c | ||
421 | ct/ct_sct.c | ||
422 | ct/ct_sct_ctx.c | ||
423 | ct/ct_vfy.c | ||
424 | ct/ct_x509v3.c | ||
415 | curve25519/curve25519-generic.c | 425 | curve25519/curve25519-generic.c |
416 | curve25519/curve25519.c | 426 | curve25519/curve25519.c |
417 | des/cbc_cksm.c | 427 | des/cbc_cksm.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index f2ef151..ceab628 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -1,5 +1,7 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(top_srcdir)/Makefile.am.common |
2 | 2 | ||
3 | AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL | ||
4 | |||
3 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 | 5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 |
4 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn | 6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn |
5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec | 7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec |
@@ -500,6 +502,19 @@ libcrypto_la_SOURCES += conf/conf_mod.c | |||
500 | libcrypto_la_SOURCES += conf/conf_sap.c | 502 | libcrypto_la_SOURCES += conf/conf_sap.c |
501 | noinst_HEADERS += conf/conf_def.h | 503 | noinst_HEADERS += conf/conf_def.h |
502 | 504 | ||
505 | # ct | ||
506 | libcrypto_la_SOURCES += ct/ct_b64.c | ||
507 | libcrypto_la_SOURCES += ct/ct_err.c | ||
508 | libcrypto_la_SOURCES += ct/ct_log.c | ||
509 | libcrypto_la_SOURCES += ct/ct_oct.c | ||
510 | libcrypto_la_SOURCES += ct/ct_policy.c | ||
511 | libcrypto_la_SOURCES += ct/ct_prn.c | ||
512 | libcrypto_la_SOURCES += ct/ct_sct.c | ||
513 | libcrypto_la_SOURCES += ct/ct_sct_ctx.c | ||
514 | libcrypto_la_SOURCES += ct/ct_vfy.c | ||
515 | libcrypto_la_SOURCES += ct/ct_x509v3.c | ||
516 | noinst_HEADERS += ct/ct_local.h | ||
517 | |||
503 | # curve25519 | 518 | # curve25519 |
504 | libcrypto_la_SOURCES += curve25519/curve25519-generic.c | 519 | libcrypto_la_SOURCES += curve25519/curve25519-generic.c |
505 | libcrypto_la_SOURCES += curve25519/curve25519.c | 520 | libcrypto_la_SOURCES += curve25519/curve25519.c |