[Openvpn-devel,v8] Handle return type of EVP_MD_size
Commit Message
From: Frank Lichtenheld <frank@lichtenheld.com>
Return type is int, but we often use it in contexts
where we expect size_t. So just cast it. Nothing else
to do really.
Change-Id: I22b93c807f1be99fab450708f686fce4aa6d5cef
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1133
---
This change was reviewed on Gerrit and approved by at least one
developer. I request to merge it to master.
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1133
This mail reflects revision 8 of this Change.
Acked-by according to Gerrit (reflected above):
Gert Doering <gert@greenie.muc.de>
Comments
Another one in the "straightforward and obvious" patches... and all
green in BB :-)
For a change, referencing sf.net list archive again... (experience shows
that "missing patches" will eventually show up on mail-archive.org, but
it can take like 1-2 weeks... and I need to get stuff done)
Your patch has been applied to the master branch.
commit ab20eceeaabd74f4b4f7d765d7a31375c317ee5c
Author: Frank Lichtenheld
Date: Mon Sep 22 22:40:53 2025 +0200
Handle return type of EVP_MD_size
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1133
Message-Id: <20250922204059.23226-1-gert@greenie.muc.de>
URL: https://sourceforge.net/p/openvpn/mailman/message/59237213/
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
@@ -1273,7 +1273,7 @@
/* We need to make a copy of the key since the OSSL parameters
* only reference it */
- memcpy(ctx->key, key, EVP_MD_size(kt));
+ memcpy(ctx->key, key, (size_t)EVP_MD_size(kt));
/* Lookup/setting of parameters in OpenSSL 3.0 are string based
*
@@ -1282,7 +1282,7 @@
* the constness away here.
*/
ctx->params[0] = OSSL_PARAM_construct_utf8_string("digest", (char *)EVP_MD_get0_name(kt), 0);
- ctx->params[1] = OSSL_PARAM_construct_octet_string("key", ctx->key, EVP_MD_size(kt));
+ ctx->params[1] = OSSL_PARAM_construct_octet_string("key", ctx->key, (size_t)EVP_MD_size(kt));
ctx->params[2] = OSSL_PARAM_construct_end();
if (!EVP_MAC_init(ctx->ctx, NULL, 0, ctx->params))
@@ -341,7 +341,7 @@
x509_get_sha1_fingerprint(X509 *cert, struct gc_arena *gc)
{
const EVP_MD *sha1 = EVP_sha1();
- struct buffer hash = alloc_buf_gc(EVP_MD_size(sha1), gc);
+ struct buffer hash = alloc_buf_gc((size_t)EVP_MD_size(sha1), gc);
X509_digest(cert, EVP_sha1(), BPTR(&hash), NULL);
ASSERT(buf_inc_len(&hash, EVP_MD_size(sha1)));
return hash;
@@ -351,7 +351,7 @@
x509_get_sha256_fingerprint(X509 *cert, struct gc_arena *gc)
{
const EVP_MD *sha256 = EVP_sha256();
- struct buffer hash = alloc_buf_gc(EVP_MD_size(sha256), gc);
+ struct buffer hash = alloc_buf_gc((size_t)EVP_MD_size(sha256), gc);
X509_digest(cert, EVP_sha256(), BPTR(&hash), NULL);
ASSERT(buf_inc_len(&hash, EVP_MD_size(sha256)));
return hash;
@@ -351,7 +351,7 @@
}
}
- if (tbslen != EVP_MD_size(EVP_get_digestbyname(mdname)))
+ if (tbslen != (size_t)EVP_MD_size(EVP_get_digestbyname(mdname)))
{
msg(M_WARN, "Error: encode_pkcs11: invalid input length <%zu>", tbslen);
goto done;