OpenXPKI::Server::Workflow::Activity::Tools::CRLExport
Export CRL to the context, can use a CRL by its serial number or get the latest
one for a given issuer.
Export format is PEM/DER encoded CRL or metadata.
- crl_serial
- The crl serial number (database key) to export
- issuer_identifier
- Determine the latest CRL for this issuer, mutually exclusive to
crl_serial
- crl_profile
- Export a crl that has a profile assigned, must also be given when using
crl_serial on such a crl!
- format
- PEM
- Export the CRL in PEM encoding to the given target_key
- DER
- Export the CRL as binary data (DER) to the given target_key, the
target key must start with an underscore (volatile context item).
- HASH
- Write the metadata from the crl table into mulitple context items, the
prefix can be set with prefix, the default is crl_.
Items populated:
- crl_serial
- crl_number
- ${prefix}items
- ${prefix}last_update, ${prefix}next_update, ${prefix}publication_date
- The date from the CRL as epoch (integer).
- target_key, optional
- The context key to write the result to, default is crl_export.
- prefix
- Prefix to add to the context keys for format HASH. Default is
crl_.