aamd
aamd

Reputation: 427

How to generate a CRL (certificate revocation list) in java

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

Answers (1)

nif
nif

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

Related Questions