diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3')
-rw-r--r-- | src/lib/libcrypto/x509v3/ext_dat.h | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/pcy_int.h | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509v3/ext_dat.h b/src/lib/libcrypto/x509v3/ext_dat.h index f8bf7916b3..1bacb0d5a1 100644 --- a/src/lib/libcrypto/x509v3/ext_dat.h +++ b/src/lib/libcrypto/x509v3/ext_dat.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ext_dat.h,v 1.12 2015/02/10 13:28:17 jsing Exp $ */ | 1 | /* $OpenBSD: ext_dat.h,v 1.13 2016/12/21 15:49:29 jsing 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 | */ |
@@ -58,6 +58,8 @@ | |||
58 | 58 | ||
59 | #include <openssl/opensslconf.h> | 59 | #include <openssl/opensslconf.h> |
60 | 60 | ||
61 | __BEGIN_HIDDEN_DECLS | ||
62 | |||
61 | /* This file contains a table of "standard" extensions */ | 63 | /* This file contains a table of "standard" extensions */ |
62 | 64 | ||
63 | extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku; | 65 | extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku; |
@@ -127,3 +129,5 @@ static const X509V3_EXT_METHOD *standard_exts[] = { | |||
127 | 129 | ||
128 | /* Number of standard extensions */ | 130 | /* Number of standard extensions */ |
129 | #define STANDARD_EXTENSION_COUNT (sizeof(standard_exts)/sizeof(X509V3_EXT_METHOD *)) | 131 | #define STANDARD_EXTENSION_COUNT (sizeof(standard_exts)/sizeof(X509V3_EXT_METHOD *)) |
132 | |||
133 | __END_HIDDEN_DECLS | ||
diff --git a/src/lib/libcrypto/x509v3/pcy_int.h b/src/lib/libcrypto/x509v3/pcy_int.h index 50ed7cbfcf..92b94e2911 100644 --- a/src/lib/libcrypto/x509v3/pcy_int.h +++ b/src/lib/libcrypto/x509v3/pcy_int.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pcy_int.h,v 1.4 2015/07/18 00:01:05 beck Exp $ */ | 1 | /* $OpenBSD: pcy_int.h,v 1.5 2016/12/21 15:49:29 jsing 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 2004. | 3 | * project 2004. |
4 | */ | 4 | */ |
@@ -56,6 +56,7 @@ | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | 58 | ||
59 | __BEGIN_HIDDEN_DECLS | ||
59 | 60 | ||
60 | typedef struct X509_POLICY_DATA_st X509_POLICY_DATA; | 61 | typedef struct X509_POLICY_DATA_st X509_POLICY_DATA; |
61 | 62 | ||
@@ -204,3 +205,5 @@ int policy_node_match(const X509_POLICY_LEVEL *lvl, | |||
204 | const X509_POLICY_NODE *node, const ASN1_OBJECT *oid); | 205 | const X509_POLICY_NODE *node, const ASN1_OBJECT *oid); |
205 | 206 | ||
206 | const X509_POLICY_CACHE *policy_cache_set(X509 *x); | 207 | const X509_POLICY_CACHE *policy_cache_set(X509 *x); |
208 | |||
209 | __END_HIDDEN_DECLS | ||