From bf928795b315d0400a881ab5a032c75e49249a4e Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Thu, 19 Jun 2025 17:31:31 -0400 Subject: [PATCH] Fix missing dashes on the end of header and footer. --- wolfssl/wolfcrypt/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index afee382fd..73ce5b4bf 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -2050,7 +2050,7 @@ enum Max_ASN { /* Maximum DER digest ASN header size */ /* Max X509 header length indicates the * max length + 2 ('\n', '\0') */ - MAX_X509_HEADER_SZ = (37 + 2), /* Maximum PEM Header/Footer Size */ + MAX_X509_HEADER_SZ = (41 + 2), /* Maximum PEM Header/Footer Size */ #if defined(HAVE_FALCON) || defined(HAVE_DILITHIUM) MAX_PUBLIC_KEY_SZ = MAX_PQC_PUBLIC_KEY_SZ + MAX_ALGO_SZ + MAX_SEQ_SZ * 2, #else