diff options
| author | kinichiro <kinichiro.inoguchi@gmail.com> | 2022-01-12 20:04:53 +0900 |
|---|---|---|
| committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2022-01-12 20:04:53 +0900 |
| commit | 71f437de629735e3f54eb0660e419ccc11f7cb7b (patch) | |
| tree | b13b0b57836c6d2fc02df36c045c53e01079eea8 /ssl | |
| parent | 7f5ad60d69c5ade1d3b86c91858b16a78a23c751 (diff) | |
| download | portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.tar.gz portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.tar.bz2 portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.zip | |
Follow upstream file changes and fix build
- Add asn1_lib.c
- Consolidation of ASN.1 code
Add asn1_item.c asn1_old.c
Remove a_d2i_fp.c a_digest.c a_dup.c a_i2d_fp.c a_sign.c a_verify.c
- Merge evp_asn1.c into a_type.c
- Merge asn_pack.c into asn1_item.c
- Rename tls13_key_share.c to tls_key_share.c
- Add bio/bio_local.h dh/dh_local.h ocsp/ocsp_local.h
- Add comp/comp_local.h
- Add define LIBRESSL_CRYPTO_INTERNAL to regress build
Diffstat (limited to 'ssl')
| -rw-r--r-- | ssl/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ssl/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index f346274..a20cb04 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
| @@ -35,6 +35,7 @@ set( | |||
| 35 | t1_lib.c | 35 | t1_lib.c |
| 36 | tls_buffer.c | 36 | tls_buffer.c |
| 37 | tls_content.c | 37 | tls_content.c |
| 38 | tls_key_share.c | ||
| 38 | tls12_key_schedule.c | 39 | tls12_key_schedule.c |
| 39 | tls12_lib.c | 40 | tls12_lib.c |
| 40 | tls12_record_layer.c | 41 | tls12_record_layer.c |
| @@ -43,7 +44,6 @@ set( | |||
| 43 | tls13_handshake.c | 44 | tls13_handshake.c |
| 44 | tls13_handshake_msg.c | 45 | tls13_handshake_msg.c |
| 45 | tls13_key_schedule.c | 46 | tls13_key_schedule.c |
| 46 | tls13_key_share.c | ||
| 47 | tls13_legacy.c | 47 | tls13_legacy.c |
| 48 | tls13_lib.c | 48 | tls13_lib.c |
| 49 | tls13_record.c | 49 | tls13_record.c |
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 6f44e48..227dfdf 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
| @@ -72,6 +72,7 @@ libssl_la_SOURCES += t1_enc.c | |||
| 72 | libssl_la_SOURCES += t1_lib.c | 72 | libssl_la_SOURCES += t1_lib.c |
| 73 | libssl_la_SOURCES += tls_buffer.c | 73 | libssl_la_SOURCES += tls_buffer.c |
| 74 | libssl_la_SOURCES += tls_content.c | 74 | libssl_la_SOURCES += tls_content.c |
| 75 | libssl_la_SOURCES += tls_key_share.c | ||
| 75 | libssl_la_SOURCES += tls12_key_schedule.c | 76 | libssl_la_SOURCES += tls12_key_schedule.c |
| 76 | libssl_la_SOURCES += tls12_lib.c | 77 | libssl_la_SOURCES += tls12_lib.c |
| 77 | libssl_la_SOURCES += tls12_record_layer.c | 78 | libssl_la_SOURCES += tls12_record_layer.c |
| @@ -80,7 +81,6 @@ libssl_la_SOURCES += tls13_error.c | |||
| 80 | libssl_la_SOURCES += tls13_handshake.c | 81 | libssl_la_SOURCES += tls13_handshake.c |
| 81 | libssl_la_SOURCES += tls13_handshake_msg.c | 82 | libssl_la_SOURCES += tls13_handshake_msg.c |
| 82 | libssl_la_SOURCES += tls13_key_schedule.c | 83 | libssl_la_SOURCES += tls13_key_schedule.c |
| 83 | libssl_la_SOURCES += tls13_key_share.c | ||
| 84 | libssl_la_SOURCES += tls13_legacy.c | 84 | libssl_la_SOURCES += tls13_legacy.c |
| 85 | libssl_la_SOURCES += tls13_lib.c | 85 | libssl_la_SOURCES += tls13_lib.c |
| 86 | libssl_la_SOURCES += tls13_record.c | 86 | libssl_la_SOURCES += tls13_record.c |
