diff options
| author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-11-27 22:12:11 +0900 |
|---|---|---|
| committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-11-27 22:12:11 +0900 |
| commit | 954948159a6ccdf47666f42b4d92f0ba77ca942c (patch) | |
| tree | e474a85e8bd73bf750cd0bcc68e23f6f9339bc8b | |
| parent | 2ac3d32ec532b9e62efe20f3e7d03245cd2b09c3 (diff) | |
| download | portable-954948159a6ccdf47666f42b4d92f0ba77ca942c.tar.gz portable-954948159a6ccdf47666f42b4d92f0ba77ca942c.tar.bz2 portable-954948159a6ccdf47666f42b4d92f0ba77ca942c.zip | |
Add ct
| -rw-r--r-- | crypto/CMakeLists.txt | 10 | ||||
| -rw-r--r-- | crypto/Makefile.am | 15 | ||||
| -rwxr-xr-x | update.sh | 3 |
3 files changed, 27 insertions, 1 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 5733746..2aac051 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 |
| @@ -122,7 +122,8 @@ copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h | |||
| 122 | md4/md4.h ripemd/ripemd.h whrlpool/whrlpool.h idea/idea.h | 122 | md4/md4.h ripemd/ripemd.h whrlpool/whrlpool.h idea/idea.h |
| 123 | rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h | 123 | rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h |
| 124 | sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h | 124 | sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h |
| 125 | camellia/camellia.h gost/gost.h curve25519/curve25519.h" | 125 | camellia/camellia.h gost/gost.h curve25519/curve25519.h |
| 126 | ct/ct.h ct/cterr.h" | ||
| 126 | 127 | ||
| 127 | copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h" | 128 | copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h" |
| 128 | 129 | ||
