mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 20:45:37 +01:00
Add support for 'emailAddress' to x509_string_to_names()
This commit is contained in:
parent
e92f73d73b
commit
0767e67d17
@ -65,6 +65,8 @@ int x509_string_to_names( asn1_named_data **head, const char *name )
|
|||||||
oid = OID_AT_ORG_UNIT;
|
oid = OID_AT_ORG_UNIT;
|
||||||
else if( c - s == 2 && strncasecmp( s, "ST", 2 ) == 0 )
|
else if( c - s == 2 && strncasecmp( s, "ST", 2 ) == 0 )
|
||||||
oid = OID_AT_STATE;
|
oid = OID_AT_STATE;
|
||||||
|
else if( c - s == 12 && strncasecmp( s, "emailAddress", 12 ) == 0 )
|
||||||
|
oid = OID_PKCS9_EMAIL;
|
||||||
else if( c - s == 12 && strncasecmp( s, "serialNumber", 12 ) == 0 )
|
else if( c - s == 12 && strncasecmp( s, "serialNumber", 12 ) == 0 )
|
||||||
oid = OID_AT_SERIAL_NUMBER;
|
oid = OID_AT_SERIAL_NUMBER;
|
||||||
else if( c - s == 13 && strncasecmp( s, "postalAddress", 13 ) == 0 )
|
else if( c - s == 13 && strncasecmp( s, "postalAddress", 13 ) == 0 )
|
||||||
|
Loading…
Reference in New Issue
Block a user