summaryrefslogtreecommitdiff
path: root/lib/libcrypto/x509/x509.h
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2018-02-20 17:06:20 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2018-02-20 17:06:20 +0000
commitd216c9dede8a671c87db373fd7b8fa8a8aa32b5d (patch)
tree790fe666375465a4a48e16272f6d4b94ae7af4e4 /lib/libcrypto/x509/x509.h
parenta39360548059d43f914231ac997ba52640813039 (diff)
Provide X509_REQ_get0_signature()
Diffstat (limited to 'lib/libcrypto/x509/x509.h')
-rw-r--r--lib/libcrypto/x509/x509.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libcrypto/x509/x509.h b/lib/libcrypto/x509/x509.h
index 9d02e319aa0..26e71ee40e4 100644
--- a/lib/libcrypto/x509/x509.h
+++ b/lib/libcrypto/x509/x509.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509.h,v 1.30 2018/02/20 17:04:58 jsing Exp $ */
+/* $OpenBSD: x509.h,v 1.31 2018/02/20 17:06:19 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -611,6 +611,9 @@ const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
const X509_ALGOR **palg);
+void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig,
+ const X509_ALGOR **palg);
+
void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
X509_CRL_METHOD *X509_CRL_METHOD_new(
int (*crl_init)(X509_CRL *crl),