According to the X.509, a certificate has an attribute subject.

C=US, ST=Maryland, L=Pasadena, O=Brent Baccala, OU=FreeSoft,
CN=www.freesoft.org/emailAddress=baccala@freesoft.org

This is the typical subject value. The question is what are the types(or tags) of those attributes(C, ST, L, O, OU, CN) and what is their format?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 5 down vote accepted

IETF PKIX (latest version RFC 5280) is a well accepted profile for certificates. From section 4.1.2.4, the following fields must be supported (I've added between parenthesis is the OpenSSL long and optional short name):

  • country (countryName, C),
  • organization (organizationName, O),
  • organizational unit (organizationalUnitName, OU),
  • distinguished name qualifier (dnQualifier),
  • state or province name (stateOrProvinceName, ST),
  • common name (commonName, CN) and
  • serial number (serialNumber).

There's also a list of element that should be supported:

  • locality (locality, L),
  • title (title),
  • surname (surName, SN),
  • given name (givenName, GN),
  • initials (initials),
  • pseudonym (pseudonym) and
  • generation qualifier (generationQualifier).

Values should be encoded in UTF8String or PrintableString (some of them only in PrintableString, and some exceptions in IA5String). The standard also has a maximum length for all field types (Appendix A.1)

For reasons of compatibility, implementations must also support domain components (domainComponent, DC) encoded in IA5String. Attention is drawn to email (emailAddress) and its encoding (IA5String, but it's considered deprecated in DNs (it should be in Subject Alternative Name extension).

link|improve this answer
what are the codes of PrintableString and UTF8String? – Sergey Jun 24 '11 at 7:07
UTF8String is 0x0C, PrintableString is 0x13 and IA5String is 0x16. – Mathias Brossard Jun 24 '11 at 7:23
which attributes are UTF8Strings and which are PrintableStrings(I mean C, O, OU...). do they have their oids? – Sergey Jun 24 '11 at 8:23
@Sergey did you try to read specs? You've been given the link to the RFC. – Eugene Mayevski 'EldoS Corp Jun 24 '11 at 9:18
yeah, there's no word about oids there, but I found it here technet.microsoft.com/en-us/library/cc772812(WS.10).aspx – Sergey Jun 24 '11 at 9:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.