Fix tabs vs spaces, the cast to (void *) is according to the other casts.
Signed-off-by: Nuno Morais
Co-Developed-by: Jose Vieira
---
ustream-internal.h | 1 +
ustream-mbedtls.c | 10 ++
ustream-openssl.c | 12
ustream-ssl.c | 1 +
ustream-ssl.h | 2 ++
5
From: Nuno Morais
Fix tabs vs spaces
Add new optional argument to function header
to add CA_certificate to avoid replicated code
This patch depends on patch
"[OpenWrt-Devel] [PATCH] ustream-ssl: add optional mutual authentication (mTLS)"
Signed-off-by: Nuno Morais
Co-Developed-by: J
From: Nuno Morais
Fix tabs vs spaces
Add new optional argument to function header
to add CA_certificate to avoid replicated code
This patch depends on patch
"[OpenWrt-Devel] [PATCH] ustream-ssl: add optional mutual authentication (mTLS)"
Signed-off-by: Nuno Morais
Co-Developed-by: J
Fix tabs vs spaces, the cast to (void *) is according to the other casts.
Signed-off-by: Nuno Morais
Co-Developed-by: Jose Vieira
---
ustream-internal.h | 1 +
ustream-mbedtls.c | 10 ++
ustream-openssl.c | 12
ustream-ssl.c | 1 +
ustream-ssl.h | 2 ++
5
From: Nuno Morais
Optional mutual authentication (mTLS)
by providing a CA certificate through a new new flag "-M"
in order to verify client's identity.
For B2B applications.
This patch depends on patch
"[OpenWrt-Devel] [PATCH] ustream-ssl: add optional mutual authentication
For B2B applications, mutual authentication of peers is a requirement.
Add operation to enable / disable peer authentication
adding a new operation to the ustream_ssl_ops struct
using "SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT",
and "MBEDTLS_SSL_VERIFY_REQUIRED".