forked from wolfSSL/wolfssl
Fix for parsing pkcs9_contentType
This commit is contained in:
@@ -12632,6 +12632,10 @@ static int get_dn_attr_by_nid(int n, const char** buf)
|
|||||||
str = "DC";
|
str = "DC";
|
||||||
len = 2;
|
len = 2;
|
||||||
break;
|
break;
|
||||||
|
case NID_pkcs9_contentType:
|
||||||
|
str = "contentType";
|
||||||
|
len = 11;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
WOLFSSL_MSG("Attribute type not found");
|
WOLFSSL_MSG("Attribute type not found");
|
||||||
str = NULL;
|
str = NULL;
|
||||||
|
@@ -13194,6 +13194,16 @@ static int GetRDN(DecodedCert* cert, char* full, word32* idx, int* nid,
|
|||||||
*nid = NID_favouriteDrink;
|
*nid = NID_favouriteDrink;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
else if (oidSz == sizeof(attrPkcs9ContentTypeOid) &&
|
||||||
|
XMEMCMP(oid, attrPkcs9ContentTypeOid, oidSz) == 0) {
|
||||||
|
/* Set the pkcs9_contentType, type string, length and NID. */
|
||||||
|
id = ASN_CONTENT_TYPE;
|
||||||
|
typeStr = WOLFSSL_CONTENT_TYPE;
|
||||||
|
typeStrLen = sizeof(WOLFSSL_CONTENT_TYPE) - 1;
|
||||||
|
#ifdef WOLFSSL_X509_NAME_AVAILABLE
|
||||||
|
*nid = NID_pkcs9_contentType;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
/* Other OIDs that start with the same values. */
|
/* Other OIDs that start with the same values. */
|
||||||
else if (oidSz == sizeof(dcOid) && XMEMCMP(oid, dcOid, oidSz-1) == 0) {
|
else if (oidSz == sizeof(dcOid) && XMEMCMP(oid, dcOid, oidSz-1) == 0) {
|
||||||
WOLFSSL_MSG("Unknown pilot attribute type");
|
WOLFSSL_MSG("Unknown pilot attribute type");
|
||||||
@@ -13845,7 +13855,6 @@ static int GetCertName(DecodedCert* cert, char* full, byte* hash, int nameType,
|
|||||||
nid = NID_userId;
|
nid = NID_userId;
|
||||||
#endif /* OPENSSL_EXTRA */
|
#endif /* OPENSSL_EXTRA */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ASN_DOMAIN_COMPONENT:
|
case ASN_DOMAIN_COMPONENT:
|
||||||
copy = WOLFSSL_DOMAIN_COMPONENT;
|
copy = WOLFSSL_DOMAIN_COMPONENT;
|
||||||
copyLen = sizeof(WOLFSSL_DOMAIN_COMPONENT) - 1;
|
copyLen = sizeof(WOLFSSL_DOMAIN_COMPONENT) - 1;
|
||||||
@@ -13864,7 +13873,15 @@ static int GetCertName(DecodedCert* cert, char* full, byte* hash, int nameType,
|
|||||||
nid = NID_favouriteDrink;
|
nid = NID_favouriteDrink;
|
||||||
#endif /* OPENSSL_EXTRA */
|
#endif /* OPENSSL_EXTRA */
|
||||||
break;
|
break;
|
||||||
|
case ASN_CONTENT_TYPE:
|
||||||
|
copy = WOLFSSL_CONTENT_TYPE;
|
||||||
|
copyLen = sizeof(WOLFSSL_CONTENT_TYPE) - 1;
|
||||||
|
#if (defined(OPENSSL_EXTRA) || \
|
||||||
|
defined(OPENSSL_EXTRA_X509_SMALL)) \
|
||||||
|
&& !defined(WOLFCRYPT_ONLY)
|
||||||
|
nid = NID_pkcs9_contentType;
|
||||||
|
#endif /* OPENSSL_EXTRA */
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
WOLFSSL_MSG("Unknown pilot attribute type");
|
WOLFSSL_MSG("Unknown pilot attribute type");
|
||||||
#if (defined(OPENSSL_EXTRA) || \
|
#if (defined(OPENSSL_EXTRA) || \
|
||||||
@@ -26458,6 +26475,9 @@ static int EncodeName(EncodedName* name, const char* nameStr,
|
|||||||
firstSz = cname->custom.oidSz;
|
firstSz = cname->custom.oidSz;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
case ASN_CONTENT_TYPE:
|
||||||
|
thisLen += (int)sizeof(attrPkcs9ContentTypeOid);
|
||||||
|
firstSz = (int)sizeof(attrPkcs9ContentTypeOid);
|
||||||
default:
|
default:
|
||||||
thisLen += DN_OID_SZ;
|
thisLen += DN_OID_SZ;
|
||||||
firstSz = DN_OID_SZ;
|
firstSz = DN_OID_SZ;
|
||||||
@@ -26522,6 +26542,13 @@ static int EncodeName(EncodedName* name, const char* nameStr,
|
|||||||
name->encoded[idx++] = nameTag;
|
name->encoded[idx++] = nameTag;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
case ASN_CONTENT_TYPE:
|
||||||
|
XMEMCPY(name->encoded + idx, attrPkcs9ContentTypeOid,
|
||||||
|
sizeof(attrPkcs9ContentTypeOid));
|
||||||
|
idx += (int)sizeof(attrPkcs9ContentTypeOid);
|
||||||
|
/* str type */
|
||||||
|
name->encoded[idx++] = nameTag;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
name->encoded[idx++] = 0x55;
|
name->encoded[idx++] = 0x55;
|
||||||
name->encoded[idx++] = 0x04;
|
name->encoded[idx++] = 0x04;
|
||||||
@@ -26594,6 +26621,10 @@ static int EncodeName(EncodedName* name, const char* nameStr,
|
|||||||
oidSz = cname->custom.oidSz;
|
oidSz = cname->custom.oidSz;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
case ASN_CONTENT_TYPE:
|
||||||
|
oid = attrPkcs9ContentTypeOid;
|
||||||
|
oidSz = sizeof(attrPkcs9ContentTypeOid);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
/* Construct OID using type. */
|
/* Construct OID using type. */
|
||||||
dnOid[2] = type;
|
dnOid[2] = type;
|
||||||
|
@@ -710,10 +710,10 @@ enum DN_Tags {
|
|||||||
ASN_DNQUALIFIER = 0x2e, /* dnQualifier */
|
ASN_DNQUALIFIER = 0x2e, /* dnQualifier */
|
||||||
#endif /* WOLFSSL_CERT_NAME_ALL */
|
#endif /* WOLFSSL_CERT_NAME_ALL */
|
||||||
|
|
||||||
ASN_CONTENT_TYPE = 0x03, /* pkcs9_contentType */
|
|
||||||
|
|
||||||
ASN_EMAIL_NAME = 0x98, /* not actual OID (see attrEmailOid) */
|
ASN_CONTENT_TYPE = 0x97, /* not actual OID (see attrPkcs9ContentTypeOid) */
|
||||||
ASN_CUSTOM_NAME = 0x99, /* not actual OID (see CertOidField) */
|
ASN_EMAIL_NAME = 0x98, /* not actual OID (see attrEmailOid) */
|
||||||
|
ASN_CUSTOM_NAME = 0x99, /* not actual OID (see CertOidField) */
|
||||||
|
|
||||||
/* pilot attribute types
|
/* pilot attribute types
|
||||||
* OID values of 0.9.2342.19200300.100.1.* */
|
* OID values of 0.9.2342.19200300.100.1.* */
|
||||||
@@ -770,6 +770,7 @@ extern const WOLFSSL_ObjectInfo wolfssl_object_info[];
|
|||||||
#define WOLFSSL_USER_ID "/UID="
|
#define WOLFSSL_USER_ID "/UID="
|
||||||
#define WOLFSSL_DOMAIN_COMPONENT "/DC="
|
#define WOLFSSL_DOMAIN_COMPONENT "/DC="
|
||||||
#define WOLFSSL_FAVOURITE_DRINK "/favouriteDrink="
|
#define WOLFSSL_FAVOURITE_DRINK "/favouriteDrink="
|
||||||
|
#define WOLFSSL_CONTENT_TYPE "/contentType="
|
||||||
|
|
||||||
#if defined(WOLFSSL_APACHE_HTTPD)
|
#if defined(WOLFSSL_APACHE_HTTPD)
|
||||||
/* otherName strings */
|
/* otherName strings */
|
||||||
|
Reference in New Issue
Block a user