I use keytool to create an x509 certificate with this subject:
CN=alice, OU=Demo Client, O=myCompany, L=Site1, ST=wll, C=nz
But after I create a CSR and get the entry signed (I use "openssl ca") my "O" and "L" are suddenly reversed:
CN=alice, OU=Demo Client, L=Site1, O=myCompany, ST=wll, C=nz
Are the both subjects still considered the same? Or is the order important?
They may or may not be the same, depending on how the Subject Distinguished Name (DN) is encoded in the CSR and the certificate. The DN is defined as the X.501 type
Name
. From RFC 5280:The
distinguishedNameMatch
rule is defined in RFC 5280 section 7.1 (emphasis mine):If the Organization (O) and Location (L) attributes appear in the same Relative Distinguished Name set in the Subject DN of both the CSR and the certificate, then all else being equal, the DNs are equal. If they are in different RDNs, then the order of the RDNs has been changed, making the DNs different.