String keyUsg = KeyUsageExtension.KEY_ENCIPHERMENT;
byte [] der =new DerValue(keyUsg).getOctetString();
KeyUsageExtension keyUsage = new KeyUsageExtension(true,der);
DerInputStream in = new DerInputStream(keyUsage.toString().getBytes());
PKCSAttributes attr=new PKCSAttributes(in,"IBMJCEFIPS"); 

I tried using the above code snippet to add KeyUsage extension to the certificate signing request, I get the following exception.

Exception in thread "main" java.io.IOException: DerValue.getOctetString, not an Octet String: 12

How can i proceed further.. By the way am using IBMJCE-FIPS provider. Thanks in advance.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.