aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-08-17 14:10:52 +0100
committerDr. Stephen Henson <steve@openssl.org>2016-08-17 14:12:55 +0100
commit8adc1cb8510a9f4beab9e53f53c9690d2ced12fd (patch)
tree3f0d1dc1a57bae07f1806c27c31e96a900c5e48a /include
parent8900f3e3982a016a25ad87a2270446e780038ec9 (diff)
downloadopenssl-8adc1cb8510a9f4beab9e53f53c9690d2ced12fd.zip
openssl-8adc1cb8510a9f4beab9e53f53c9690d2ced12fd.tar.gz
openssl-8adc1cb8510a9f4beab9e53f53c9690d2ced12fd.tar.bz2
Constify X509_get0_signature()
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/x509.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index 7e649eb..fc23d9b 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -548,7 +548,8 @@ X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length);
int i2d_re_X509_tbs(X509 *x, unsigned char **pp);
-void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg, X509 *x);
+void X509_get0_signature(const ASN1_BIT_STRING **psig,
+ const X509_ALGOR **palg, const X509 *x);
int X509_get_signature_nid(const X509 *x);
int X509_trusted(const X509 *x);