Fix missing dashes on the end of header and footer.

pull/8904/head
Anthony Hu 2025-06-19 17:31:31 -04:00
parent 978a29da0b
commit bf928795b3
1 changed files with 1 additions and 1 deletions

View File

@ -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