I am using a SslServerSocket and client certificates and want to extract the CN from the SubjectDN from the client's X509Certificate.

At the moment I call cert.getSubjectX500Principal().getName() but this of course gives me the total formatted DN of the client. For some reason I am just interested in the CN=theclient part of the DN. Is there a way to extract this part of the DN without parsing the String myself?

Best regards, Martin

link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

If adding dependencies isn't a problem you can do this with Bouncy Castle's API for working with X.509 certificates:

import org.bouncycastle.asn1.x509.X509Name;
import org.bouncycastle.jce.PrincipalUtil;
import org.bouncycastle.jce.X509Principal;

...

final X509Principal principal = PrincipalUtil.getSubjectX509Principal(cert);
final Vector<?> values = principal.getValues(X509Name.CN);
final String cn = (String) values.get(0);

Update

At the time of this posting, this was the way to do this. As gtrak mentions in the comments however, this approach is now deprecated. See gtrak's updated code that uses the new Bouncy Castle API.

link|improve this answer
it seems like X509Name is deprecated in Bouncycastle 1.46, and they intend to use x500Name. Know anything about that or the intended alternative to do the same thing? – gtrak Feb 28 '11 at 15:40
Wow, looking at the new API I'm having a hard time figuring out how to accomplish the same goal as the above code. Perhaps the Bouncycastle mailing list archives might have an answer. I'll update this answer if I figure it out. – laz Mar 1 '11 at 3:55
I'm having the same problem. Please let me know if you come up with anything. This is as far as I've gotten: x500name = X500Name.getInstance(PrincipalUtil.getIssuerX509Principal(cert)); RDN cn = x500name.getRDNs(BCStyle.CN)[0]; – gtrak Apr 1 '11 at 15:25
I found how to do it via a mailing list discussion, I created an answer that shows how. – gtrak Apr 3 '11 at 2:23
updated it to use JcaX509CertificateHolder – gtrak Apr 4 '11 at 14:19
show 4 more comments
feedback

Here's some code for the new non-deprecated BouncyCastle API. You'll need both bcmail and bcprov distributions.

X509Certificate cert = ...;

X500Name x500name = new JcaX509CertificateHolder(cert).getSubject()
RDN cn = x500name.getRDNs(BCStyle.CN)[0];

return IETFUtils.valueToString(cn.getFirst().getValue());
link|improve this answer
feedback

here is another way. the idea is that the DN you obtain is in rfc2253 format, which is the same as used for LDAP DN. So why not reuse the LDAP API?

import javax.naming.ldap.LdapName;
import javax.naming.ldap.Rdn;

String dn = x509cert.getSubjectX500Principal().getName();
LdapName ldapDN = new LdapName(dn);
for(Rdn rdn: ldapDN.getRdns()) {
    System.out.println(rdn.getType() + " -> " + rdn.getValue());
}
link|improve this answer
+1 for reuse, looks very clean indeed – Sebastian Godelet Jan 4 at 8:11
that's very creative – gtrak Feb 13 at 23:00
feedback

As an alternative to gtrak's code that does not need ''bcmail'':

    X509Certificate cert = ...;
    X500Principal principal = cert.getSubjectX500Principal();

    X500Name x500name = new X500Name( principal.getName() );
    RDN cn = x500name.getRDNs(BCStyle.CN)[0]);

    return IETFUtils.valueToString(cn.getFirst().getValue());

@Jakub: I have used your solution until my SW had to be run on Android. And Android does not implement javax.naming.ldap :-(

link|improve this answer
That is exactly the same reason I cam up with this solution: porting to Android... – Ivin Jan 5 at 9:07
feedback

You could try getName(X500Principal.RFC2253, oidMap) or getName(X500Principal.CANONICAL, oidMap) to see which formats the DN string better. Maybe one of the oidMap map values will be the string you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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