From cccabbffb0b2975cac1d7ed915597e116819fcd6 Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Tue, 17 Oct 2023 06:28:25 +0200 Subject: [PATCH] fixup! ASN1_item_sign_ex(): include support for digest-less signing (EdDSA) --- crypto/asn1/a_sign.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/a_sign.c b/crypto/asn1/a_sign.c index 57107241717fbd..460b0a64a45133 100644 --- a/crypto/asn1/a_sign.c +++ b/crypto/asn1/a_sign.c @@ -125,7 +125,7 @@ int ASN1_item_sign_ex(const ASN1_ITEM *it, X509_ALGOR *algor1, EVP_PKEY *pkey, const EVP_MD *md, OSSL_LIB_CTX *libctx, const char *propq) { - char name[80]; + char name[OSSL_MAX_NAME_SIZE]; int rv = 0; EVP_MD_CTX *ctx;