summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509v3/x509v3.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/x509v3/x509v3.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/x509v3/x509v3.h b/src/lib/libcrypto/x509v3/x509v3.h
index 429239424c..0d636d7bf4 100644
--- a/src/lib/libcrypto/x509v3/x509v3.h
+++ b/src/lib/libcrypto/x509v3/x509v3.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509v3.h,v 1.25 2018/05/13 17:49:03 tb Exp $ */ 1/* $OpenBSD: x509v3.h,v 1.26 2018/05/18 18:30:03 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -782,16 +782,16 @@ int X509_check_issued(X509 *issuer, X509 *subject);
782int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid); 782int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid);
783int X509_PURPOSE_get_count(void); 783int X509_PURPOSE_get_count(void);
784X509_PURPOSE * X509_PURPOSE_get0(int idx); 784X509_PURPOSE * X509_PURPOSE_get0(int idx);
785int X509_PURPOSE_get_by_sname(char *sname); 785int X509_PURPOSE_get_by_sname(const char *sname);
786int X509_PURPOSE_get_by_id(int id); 786int X509_PURPOSE_get_by_id(int id);
787int X509_PURPOSE_add(int id, int trust, int flags, 787int X509_PURPOSE_add(int id, int trust, int flags,
788 int (*ck)(const X509_PURPOSE *, const X509 *, int), 788 int (*ck)(const X509_PURPOSE *, const X509 *, int),
789 char *name, char *sname, void *arg); 789 const char *name, const char *sname, void *arg);
790char *X509_PURPOSE_get0_name(X509_PURPOSE *xp); 790char *X509_PURPOSE_get0_name(const X509_PURPOSE *xp);
791char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp); 791char *X509_PURPOSE_get0_sname(const X509_PURPOSE *xp);
792int X509_PURPOSE_get_trust(X509_PURPOSE *xp); 792int X509_PURPOSE_get_trust(const X509_PURPOSE *xp);
793void X509_PURPOSE_cleanup(void); 793void X509_PURPOSE_cleanup(void);
794int X509_PURPOSE_get_id(X509_PURPOSE *); 794int X509_PURPOSE_get_id(const X509_PURPOSE *);
795 795
796STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x); 796STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x);
797STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x); 797STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x);