summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_ext.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/x509/x509_ext.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/x509/x509_ext.c b/src/lib/libcrypto/x509/x509_ext.c
index e90befaba1..a0f85426ef 100644
--- a/src/lib/libcrypto/x509/x509_ext.c
+++ b/src/lib/libcrypto/x509/x509_ext.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_ext.c,v 1.9 2015/02/10 08:33:10 jsing Exp $ */ 1/* $OpenBSD: x509_ext.c,v 1.10 2018/05/18 14:19:46 tb 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 *
@@ -66,31 +66,31 @@
66#include <openssl/x509v3.h> 66#include <openssl/x509v3.h>
67 67
68int 68int
69X509_CRL_get_ext_count(X509_CRL *x) 69X509_CRL_get_ext_count(const X509_CRL *x)
70{ 70{
71 return (X509v3_get_ext_count(x->crl->extensions)); 71 return (X509v3_get_ext_count(x->crl->extensions));
72} 72}
73 73
74int 74int
75X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos) 75X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos)
76{ 76{
77 return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos)); 77 return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos));
78} 78}
79 79
80int 80int
81X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos) 81X509_CRL_get_ext_by_OBJ(const X509_CRL *x, const ASN1_OBJECT *obj, int lastpos)
82{ 82{
83 return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos)); 83 return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos));
84} 84}
85 85
86int 86int
87X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos) 87X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos)
88{ 88{
89 return (X509v3_get_ext_by_critical(x->crl->extensions, crit, lastpos)); 89 return (X509v3_get_ext_by_critical(x->crl->extensions, crit, lastpos));
90} 90}
91 91
92X509_EXTENSION * 92X509_EXTENSION *
93X509_CRL_get_ext(X509_CRL *x, int loc) 93X509_CRL_get_ext(const X509_CRL *x, int loc)
94{ 94{
95 return (X509v3_get_ext(x->crl->extensions, loc)); 95 return (X509v3_get_ext(x->crl->extensions, loc));
96} 96}
@@ -102,7 +102,7 @@ X509_CRL_delete_ext(X509_CRL *x, int loc)
102} 102}
103 103
104void * 104void *
105X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx) 105X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx)
106{ 106{
107 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx); 107 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx);
108} 108}