I am trying to communicate with a CAC using Java. From the Developer Kit I was able to find information about extracting the Unique ID(CHUID) and even a few information like the Applets available in the card. However I am unable to extract the username out of the card(LastName.FirstName.MiddleName.ID) and I am also unable to find documentation on the CAC stuff. Any help would be appreciated!

link|improve this question
CoreStreet (corestreet.com) has a good smart card library that you can use to read CAC and PIV cards. You have to pay for it though. – Taylor Leese Dec 15 '10 at 22:42
feedback

3 Answers

Most card readers will come with a driver that enables PKCS #11 support, and then you can use the SunPKCS11 security provider to treat the CAC like any other key store. This answer to a related question may be helpful.

As for documentation on developing CAC-enabled Java applications, I was never able to find any either.

link|improve this answer
feedback

I'm not sure what you're using to do this, but if you're accessing it using PKCS#11 you need to find the alias on the card's KeyStore that contains the text "ID Certificate". You can then get that certificate as an X509Certificate using keyStore.getCertificate(alias) and get the name you're looking for using cert.getSubjectX500Principal().getName().

And yeah, I never really found any documentation for this sort of thing either.

link|improve this answer
feedback

I am not using the card to access a secure website. I am using it in a desktop application to authenticate users and so would not be accessing the certificates stored in the card. I am able to access the different applets stored in the card, but have no idea on getting the username out. This user name is needed to verify the users in our system. Any inputs on that ?

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.