In versions prior to r146 it was possible to create X509Certificate objects directly. Now that API is deprecated and the new one only deliveres a X509CertificateHolder object.

I cannot find a way to transform a X509CertificateHolder to X509Certificate.

How can this be done?

link|improve this question

53% accept rate
Do you have a link to the online API documentation? – Petey B Jun 16 '11 at 13:35
Thank you, Steffen. It was very helpful. – Martynas Nov 13 '11 at 13:44
1  
@SteffenHeil, You should put the answer in the answer section so we can mark it as answered. – Ben Jan 20 at 12:55
feedback

1 Answer

up vote 1 down vote accepted

I will answer to my own questions, but not delete it, in case someone else got the same problems:

return new JcaX509CertificateConverter().setProvider( "BC" )
  .getCertificate( certificateHolder );

And for attribute certificates:

return new X509V2AttributeCertificate( attributeCertificateHolder.getEncoded() );

Not nice, as it is encoding and decoding, but it works.

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.