summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509
diff options
context:
space:
mode:
authorjsing <>2018-02-22 16:50:30 +0000
committerjsing <>2018-02-22 16:50:30 +0000
commit0e70c1424cfd8c4191fc2f6ad92dcd04051f49be (patch)
tree16afa4246140d0344e4a7ab2e18fab0c2988c6f5 /src/lib/libcrypto/x509
parenteaa55521fa9db4bcc379bda5a57c4f2aa3ec8212 (diff)
downloadopenbsd-0e70c1424cfd8c4191fc2f6ad92dcd04051f49be.tar.gz
openbsd-0e70c1424cfd8c4191fc2f6ad92dcd04051f49be.tar.bz2
openbsd-0e70c1424cfd8c4191fc2f6ad92dcd04051f49be.zip
Provide X509_REQ_get_signature_nid().
Diffstat (limited to 'src/lib/libcrypto/x509')
-rw-r--r--src/lib/libcrypto/x509/x509.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h
index c7695b4663..9033b1d4d9 100644
--- a/src/lib/libcrypto/x509/x509.h
+++ b/src/lib/libcrypto/x509/x509.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509.h,v 1.33 2018/02/22 16:47:50 jsing Exp $ */ 1/* $OpenBSD: x509.h,v 1.34 2018/02/22 16:50:30 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -611,6 +611,8 @@ const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
611void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig, 611void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
612 const X509_ALGOR **palg); 612 const X509_ALGOR **palg);
613 613
614int X509_REQ_get_signature_nid(const X509_REQ *req);
615
614void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig, 616void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig,
615 const X509_ALGOR **palg); 617 const X509_ALGOR **palg);
616 618