diff options
Diffstat (limited to 'src/lib/libcrypto/x509/x509.h')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index d4efaf3eca..2be1e3c000 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.60 2018/05/18 18:23:24 tb Exp $ */ | 1 | /* $OpenBSD: x509.h,v 1.61 2018/05/18 18:37:23 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 | * |
@@ -1166,16 +1166,21 @@ void * X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, | |||
1166 | int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, | 1166 | int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, |
1167 | int crit, unsigned long flags); | 1167 | int crit, unsigned long flags); |
1168 | 1168 | ||
1169 | int X509_REVOKED_get_ext_count(X509_REVOKED *x); | 1169 | int X509_REVOKED_get_ext_count(const X509_REVOKED *x); |
1170 | int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos); | 1170 | int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, |
1171 | int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos); | 1171 | int lastpos); |
1172 | int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos); | 1172 | int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, |
1173 | X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc); | 1173 | const ASN1_OBJECT *obj, int lastpos); |
1174 | int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, | ||
1175 | int crit, int lastpos); | ||
1176 | X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc); | ||
1174 | X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); | 1177 | X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); |
1175 | int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc); | 1178 | int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, |
1176 | void * X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx); | 1179 | int loc); |
1177 | int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit, | 1180 | void * X509_REVOKED_get_ext_d2i(const X509_REVOKED *x, int nid, |
1178 | unsigned long flags); | 1181 | int *crit, int *idx); |
1182 | int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, | ||
1183 | int crit, unsigned long flags); | ||
1179 | 1184 | ||
1180 | X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, | 1185 | X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, |
1181 | int nid, int crit, ASN1_OCTET_STRING *data); | 1186 | int nid, int crit, ASN1_OCTET_STRING *data); |