Skip to content

Commit

Permalink
Certificates: ECC signature algorithm parameter
Browse files Browse the repository at this point in the history
Allow, with a define, ECC signature algorithm parameters to be NULL and
not just empty.
Only for interop.
  • Loading branch information
SparkiDev committed Aug 27, 2024
1 parent bf074d2 commit 41c0a7b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions wolfcrypt/src/asn.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ ASN Options:
* which is discouraged by X.690 specification - default values shall not
* be encoded.
* NO_TIME_SIGNEDNESS_CHECK: Disabled the time_t signedness check.
* WOLFSSL_ECC_SIGALG_PARAMS_NULL_ALLOWED: Allows the ECDSA/EdDSA signature
* algorithms in certificates to have NULL parameter instead of empty.
* DO NOT enable this unless required for interoperability.
*/

#include <wolfssl/wolfcrypt/error-crypt.h>
Expand Down Expand Up @@ -22087,18 +22090,16 @@ static int DecodeCertInternal(DecodedCert* cert, int verify, int* criticalExt,
WOLFSSL_ERROR_VERBOSE(ASN_SIG_OID_E);
ret = ASN_SIG_OID_E;
}
#ifndef WOLFSSL_ECC_SIGALG_PARAMS_NULL_ALLOWED
/* Parameters not allowed after ECDSA or EdDSA algorithm OID. */
else if (IsSigAlgoECC(cert->signatureOID)) {
if ((dataASN[X509CERTASN_IDX_SIGALGO_PARAMS_NULL].tag != 0)
#ifdef WC_RSA_PSS
|| (dataASN[X509CERTASN_IDX_SIGALGO_PARAMS].tag != 0)
#endif
) {
if (dataASN[X509CERTASN_IDX_SIGALGO_PARAMS_NULL].tag != 0) {
WOLFSSL_ERROR_VERBOSE(ASN_PARSE_E);
ret = ASN_PARSE_E;
}
}
#ifdef WC_RSA_PSS
#endif
#ifdef WC_RSA_PSS
/* Check parameters starting with a SEQUENCE. */
else if (dataASN[X509CERTASN_IDX_SIGALGO_PARAMS].tag != 0) {
word32 oid = dataASN[X509CERTASN_IDX_SIGALGO_OID].data.oid.sum;
Expand Down Expand Up @@ -22140,7 +22141,7 @@ static int DecodeCertInternal(DecodedCert* cert, int verify, int* criticalExt,
cert->sigParamsLength = sigAlgParamsSz;
}
}
#endif
#endif
}
if ((ret == 0) && (!done)) {
pubKeyEnd = dataASN[X509CERTASN_IDX_TBS_ISSUERUID].offset;
Expand Down

0 comments on commit 41c0a7b

Please sign in to comment.