summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-07 23:32:58 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-22 12:28:45 +0100
commitdc29030ab67880440ec8fcff3a35b5c7bdca5c6b (patch)
tree40d968699e5cf92d1ffbe9439134935aed41f2f9 /include
parenta9732d04fa4ace9b4d86218e0818c47c68c08d4d (diff)
Add accessors for X509_REVOKED.
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Emilia Käsper <emilia@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/x509.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index eb9e3b4453..1374b0f80e 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -800,7 +800,9 @@ void X509_CRL_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
int X509_CRL_get_signature_nid(const X509_CRL *crl);
int i2d_re_X509_CRL_tbs(X509_CRL *req, unsigned char **pp);
+ASN1_INTEGER *X509_REVOKED_get0_serialNumber(X509_REVOKED *x);
int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
+ASN1_TIME *X509_REVOKED_get0_revocationDate(X509_REVOKED *x);
int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm);
X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,