diff options
author | Brent Cook <busterb@gmail.com> | 2019-01-20 15:28:46 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-01-20 15:28:46 -0600 |
commit | 695919e059a17a8ebd49f134d280cfe9eb33810f (patch) | |
tree | a358ddf2474d5d88a5c588a166debe6e2540b237 /ssl | |
parent | 26c8896c6b5dc88dec43f6c6d7217840a162a9b4 (diff) | |
download | portable-695919e059a17a8ebd49f134d280cfe9eb33810f.tar.gz portable-695919e059a17a8ebd49f134d280cfe9eb33810f.tar.bz2 portable-695919e059a17a8ebd49f134d280cfe9eb33810f.zip |
add new files and tests
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ssl/Makefile.am | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 7e992d0..f125946 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -40,6 +40,7 @@ set( | |||
40 | tls13_buffer.c | 40 | tls13_buffer.c |
41 | tls13_handshake.c | 41 | tls13_handshake.c |
42 | tls13_key_schedule.c | 42 | tls13_key_schedule.c |
43 | tls13_record.c | ||
43 | ) | 44 | ) |
44 | 45 | ||
45 | add_library(ssl ${SSL_SRC}) | 46 | add_library(ssl ${SSL_SRC}) |
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 9122a72..992dc86 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -49,6 +49,7 @@ libssl_la_SOURCES += t1_lib.c | |||
49 | libssl_la_SOURCES += tls13_buffer.c | 49 | libssl_la_SOURCES += tls13_buffer.c |
50 | libssl_la_SOURCES += tls13_handshake.c | 50 | libssl_la_SOURCES += tls13_handshake.c |
51 | libssl_la_SOURCES += tls13_key_schedule.c | 51 | libssl_la_SOURCES += tls13_key_schedule.c |
52 | libssl_la_SOURCES += tls13_record.c | ||
52 | 53 | ||
53 | noinst_HEADERS = bytestring.h | 54 | noinst_HEADERS = bytestring.h |
54 | noinst_HEADERS += srtp.h | 55 | noinst_HEADERS += srtp.h |
@@ -57,3 +58,4 @@ noinst_HEADERS += ssl_sigalgs.h | |||
57 | noinst_HEADERS += ssl_tlsext.h | 58 | noinst_HEADERS += ssl_tlsext.h |
58 | noinst_HEADERS += tls13_internal.h | 59 | noinst_HEADERS += tls13_internal.h |
59 | noinst_HEADERS += tls13_handshake.h | 60 | noinst_HEADERS += tls13_handshake.h |
61 | noinst_HEADERS += tls13_record.h | ||