Reputation: 427
I'm wokrking on a PKI project and i want to generate a list of revoked certificates. How can accomplish this ?
Thanks.
Upvotes: 3
Views: 4983
Reputation: 3442
I'm not aware of a vanilla Java solution to do this. Most people would probably generate a CRL using the openssl
command-line tool. However, it seems that the Bouncy Castle library provides support for the generation of CRLs in Java.
References:
Upvotes: 3