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

2021-03-17 Thread Arne Schwabe
Am 12.03.21 um 16:06 schrieb 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

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

2021-03-15 Thread Arne Schwabe
Am 12.03.21 um 16:06 schrieb Juliusz Sosinowicz: > In the EVP_DigestSignFinal API, "before the call the siglen parameter should > contain the length of the sig buffer". This is probably correct but I need to take a closer look as this function is directly taken from OpenSSL's internal function

[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