aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-06-13 13:08:12 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-06-13 13:08:12 +0000
commitdfcf48f499f19fd17a3aee03151ea301814ea6ec (patch)
treec7fe09cbfb9522c42ab19e74ae1e50009f16e676 /crypto/x509
parent0bf8f110e0b6ef6161183bfeec18fc6a2d6945e7 (diff)
downloadopenssl-dfcf48f499f19fd17a3aee03151ea301814ea6ec.tar.gz
New functions to retrieve certificate signatures and signature OID NID.
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/x509.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/x509/x509.h b/crypto/x509/x509.h
index 14ef1d3aad..85f3c73a9f 100644
--- a/crypto/x509/x509.h
+++ b/crypto/x509/x509.h
@@ -849,6 +849,10 @@ void *X509_get_ex_data(X509 *r, int idx);
int i2d_X509_AUX(X509 *a,unsigned char **pp);
X509 * d2i_X509_AUX(X509 **a,const unsigned char **pp,long length);
+void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
+ const X509 *x);
+int X509_get_signature_nid(const X509 *x);
+
int X509_alias_set1(X509 *x, unsigned char *name, int len);
int X509_keyid_set1(X509 *x, unsigned char *id, int len);
unsigned char * X509_alias_get0(X509 *x, int *len);