diff options
author | Brent Cook <busterb@gmail.com> | 2018-11-08 13:46:21 -0700 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2018-11-08 13:59:55 -0700 |
commit | 6564332d4d972cff7ea176b79b5261398c87b26e (patch) | |
tree | 465025eaca00e1ee9b08bfda06fd32aa83bc5848 /ssl | |
parent | 940accb52ca494591166da88c3749b133b844c9a (diff) | |
download | portable-6564332d4d972cff7ea176b79b5261398c87b26e.tar.gz portable-6564332d4d972cff7ea176b79b5261398c87b26e.tar.bz2 portable-6564332d4d972cff7ea176b79b5261398c87b26e.zip |
add key_schedule test, tls13 key schedule bits
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 5c13e5d..b790fb4 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -36,6 +36,7 @@ set( | |||
36 | t1_enc.c | 36 | t1_enc.c |
37 | t1_hash.c | 37 | t1_hash.c |
38 | t1_lib.c | 38 | t1_lib.c |
39 | tls13_key_schedule.c | ||
39 | ) | 40 | ) |
40 | 41 | ||
41 | add_library(ssl ${SSL_SRC}) | 42 | add_library(ssl ${SSL_SRC}) |
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 8263749..8e8d1c8 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -45,8 +45,10 @@ libssl_la_SOURCES += ssl_versions.c | |||
45 | libssl_la_SOURCES += t1_enc.c | 45 | libssl_la_SOURCES += t1_enc.c |
46 | libssl_la_SOURCES += t1_hash.c | 46 | libssl_la_SOURCES += t1_hash.c |
47 | libssl_la_SOURCES += t1_lib.c | 47 | libssl_la_SOURCES += t1_lib.c |
48 | libssl_la_SOURCES += tls13_key_schedule.c | ||
48 | 49 | ||
49 | noinst_HEADERS = srtp.h | 50 | noinst_HEADERS = srtp.h |
50 | noinst_HEADERS += ssl_locl.h | 51 | noinst_HEADERS += ssl_locl.h |
51 | noinst_HEADERS += ssl_tlsext.h | 52 | noinst_HEADERS += ssl_tlsext.h |
52 | noinst_HEADERS += bytestring.h | 53 | noinst_HEADERS += bytestring.h |
54 | noinst_HEADERS += tls13_internal.h | ||