Merge pull request #6667 from gilles-peskine-arm/lib-crypto-modules-202211

Move SSL modules out of libmbedcrypto
This commit is contained in:
Ronald Cron 2022-11-28 08:51:49 +01:00 committed by GitHub
commit 13256ba65c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View file

@ -0,0 +1,3 @@
Bugfix
* Move some SSL-specific code out of libmbedcrypto where it had been placed
accidentally.

View file

@ -49,8 +49,6 @@ set(src_crypto
md.c
md5.c
memory_buffer_alloc.c
mps_reader.c
mps_trace.c
nist_kw.c
oid.c
padlock.c
@ -84,7 +82,6 @@ set(src_crypto
sha1.c
sha256.c
sha512.c
ssl_debug_helpers_generated.c
threading.c
timing.c
version.c
@ -104,11 +101,14 @@ set(src_x509
set(src_tls
debug.c
mps_reader.c
mps_trace.c
net_sockets.c
ssl_cache.c
ssl_ciphersuites.c
ssl_client.c
ssl_cookie.c
ssl_debug_helpers_generated.c
ssl_msg.c
ssl_ticket.c
ssl_tls.c

View file

@ -114,8 +114,6 @@ OBJS_CRYPTO= \
md.o \
md5.o \
memory_buffer_alloc.o \
mps_reader.o \
mps_trace.o \
nist_kw.o \
oid.o \
padlock.o \
@ -149,7 +147,6 @@ OBJS_CRYPTO= \
sha1.o \
sha256.o \
sha512.o \
ssl_debug_helpers_generated.o \
threading.o \
timing.o \
version.o \
@ -173,11 +170,14 @@ OBJS_X509= \
OBJS_TLS= \
debug.o \
mps_reader.o \
mps_trace.o \
net_sockets.o \
ssl_cache.o \
ssl_ciphersuites.o \
ssl_client.o \
ssl_cookie.o \
ssl_debug_helpers_generated.o \
ssl_msg.o \
ssl_ticket.o \
ssl_tls.o \