Topic: How does wolfCLU parse CRL files?

Hello developer, I have been using wolfCLU recently, and I saw in the documentation that wolfCLU has CRL-related commands. However, the documentation doesn't provide specific details on how to parse CRL files. Based on the documentation, I wrote the following command: wolfssl crl -in crl_file.der -inform DER -noout. Can this command successfully parse the CRL?

Share

Re: How does wolfCLU parse CRL files?

Hi Happy,

Thanks for you interest in the wolfCLU project. Did you configure wolfSSL with --enable-crl ?

The CRL parser is capable of handling the command you mentioned:

./wolfssl crl -help
./wolfssl crl
-CAfile <ca file name>
-inform pem or der in format
-in the file to read from
-outform pem or der out format
-out output file to write to
-noout do not print output if set
-text output human readable text of CRL

Re: How does wolfCLU parse CRL files?

embhorn wrote:

Hi Happy,

Thanks for you interest in the wolfCLU project. Did you configure wolfSSL with --enable-crl ?

The CRL parser is capable of handling the command you mentioned:

./wolfssl crl -help
./wolfssl crl
-CAfile <ca file name>
-inform pem or der in format
-in the file to read from
-outform pem or der out format
-out output file to write to
-noout do not print output if set
-text output human readable text of CRL

Thanks

Share