Re: [Openvpn-devel] [PATCH] Support for wolfSSL in OpenVPN

2021-03-12 Thread Juliusz Sosinowicz
Hi Arne, I found that the connecting issue is that wolfSSL_CTX_set_min_proto_version will fail when the user (in this case OpenVPN) tries to set a protocol version that was not compiled in. I modified our configure.ac script when building for OpenVPN along with some additional fixes in this

[Openvpn-devel] [PATCH] EVP_DigestSignFinal siglen parameter correction

2021-03-12 Thread Juliusz Sosinowicz
In the EVP_DigestSignFinal API, "before the call the siglen parameter should contain the length of the sig buffer". Signed-off-by: Juliusz Sosinowicz --- src/openvpn/crypto_openssl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/openvpn/crypto_openssl.c