In our application we generate certificates for internal entities like platform and user. Our internal entities are identified by custom DNs:

  • Platform DN: p=platformName
  • User DN: cn=userName,p=platformName

We tried to generate X.509 certificate for platform or user with popular tools like openssl, keytool, implementation of javax.security (BouncyCastle), e.g.:

keytool -genkey -dname "p=platformName" -alias platformName

However, those tools do not accept/recognize keyword "P" or require certain keywords like "CN" in certificate subject DN.

How to issue certificate to an entity with custom DN format?

Note: We do not need to have DNs containing standard keywords (CN, OU, etc.), because all certificates will be for internal use of our products (will not be validated by 3rd party or included in certificate chain).

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I can only speak for openssl, as I am not familiar with other tools.

From the openssl docs

ASN1 OBJECT CONFIGURATION MODULE

This module has the name oid_section. The value of this variable points to a section containing name value pairs of OIDs: the name is the OID short and long name, the value is the numerical form of the OID. Although some of the openssl utility sub commands already have their own ASN1 OBJECT section functionality not all do. By using the ASN1 OBJECT configuration module all the openssl utility sub commands can see the new objects as well as any compliant applications.

So what you have to do is create these oids in /etc/openssl.conf or wherever the file is for your platform, then openssl will not give you the Subject attribute p has no known NID, skipped message, which I suspect is what you are getting now.

link|improve this answer
Graat, thanks a lot. Would be great to know how to do the same with other mentioned tools. Anyone knows? – dzieciou Jan 5 at 13:39
feedback

Your Answer

 
or
required, but never shown

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