Create a CrlID OCSP extension from optional URL, CRL number, and time.
Declared in <openssl/ocsp.h>
X509_EXTENSION*
OCSP_crlID_new(
char const* url,
long* n,
char* tim);
New X509_EXTENSION, or NULL on error; free with X509_EXTENSION_free().
| Name | Description |
|---|---|
| url | Optional CRL distribution URL string, or NULL. |
| n | Optional CRL number; when non-NULL its value is encoded into the extension. |
| tim | Optional GeneralizedTime string (YYYYMMDDHHMMSSZ) for crlTime, or NULL. |