summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_d2.c
diff options
context:
space:
mode:
authorjsing <>2014-04-20 15:06:11 +0000
committerjsing <>2014-04-20 15:06:11 +0000
commit4052f47ddef814e4761c3d3d1cc5a599bd1f2e44 (patch)
tree3b50847157e6e4ad188fd9cb8d6894bae5a9d254 /src/lib/libcrypto/x509/x509_d2.c
parente30dbd6d979a7c2e99c8c4b4660b81e5c18b0c8c (diff)
downloadopenbsd-4052f47ddef814e4761c3d3d1cc5a599bd1f2e44.tar.gz
openbsd-4052f47ddef814e4761c3d3d1cc5a599bd1f2e44.tar.bz2
openbsd-4052f47ddef814e4761c3d3d1cc5a599bd1f2e44.zip
KNF.
Diffstat (limited to 'src/lib/libcrypto/x509/x509_d2.c')
-rw-r--r--src/lib/libcrypto/x509/x509_d2.c60
1 files changed, 32 insertions, 28 deletions
diff --git a/src/lib/libcrypto/x509/x509_d2.c b/src/lib/libcrypto/x509/x509_d2.c
index ed051093ac..5ccd434665 100644
--- a/src/lib/libcrypto/x509/x509_d2.c
+++ b/src/lib/libcrypto/x509/x509_d2.c
@@ -5,21 +5,21 @@
5 * This package is an SSL implementation written 5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com). 6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL. 7 * The implementation was written so as to conform with Netscapes SSL.
8 * 8 *
9 * This library is free for commercial and non-commercial use as long as 9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions 10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA, 11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms 13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com). 14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 * 15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in 16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed. 17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution 18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used. 19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or 20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package. 21 * in documentation (online or textual) provided with the package.
22 * 22 *
23 * Redistribution and use in source and binary forms, with or without 23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions 24 * modification, are permitted provided that the following conditions
25 * are met: 25 * are met:
@@ -34,10 +34,10 @@
34 * Eric Young (eay@cryptsoft.com)" 34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library 35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-). 36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from 37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement: 38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 * 40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -49,7 +49,7 @@
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE. 51 * SUCH DAMAGE.
52 * 52 *
53 * The licence and distribution terms for any publically available version or 53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be 54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence 55 * copied and put under another distribution licence
@@ -62,44 +62,48 @@
62#include <openssl/x509.h> 62#include <openssl/x509.h>
63 63
64#ifndef OPENSSL_NO_STDIO 64#ifndef OPENSSL_NO_STDIO
65int X509_STORE_set_default_paths(X509_STORE *ctx) 65int
66X509_STORE_set_default_paths(X509_STORE *ctx)
66{ 67{
67 X509_LOOKUP *lookup; 68 X509_LOOKUP *lookup;
68 69
69 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); 70 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
70 if (lookup == NULL) return(0); 71 if (lookup == NULL)
71 X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT); 72 return (0);
73 X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
74
75 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
76 if (lookup == NULL)
77 return (0);
78 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
72 79
73 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir());
74 if (lookup == NULL) return(0);
75 X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
76
77 /* clear any errors */ 80 /* clear any errors */
78 ERR_clear_error(); 81 ERR_clear_error();
79 82
80 return(1); 83 return (1);
81} 84}
82 85
83int X509_STORE_load_locations(X509_STORE *ctx, const char *file, 86int
84 const char *path) 87X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *path)
85{ 88{
86 X509_LOOKUP *lookup; 89 X509_LOOKUP *lookup;
87 90
88 if (file != NULL) { 91 if (file != NULL) {
89 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); 92 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
90 if (lookup == NULL) return(0); 93 if (lookup == NULL)
91 if (X509_LOOKUP_load_file(lookup,file,X509_FILETYPE_PEM) != 1) 94 return (0);
92 return(0); 95 if (X509_LOOKUP_load_file(lookup, file, X509_FILETYPE_PEM) != 1)
96 return (0);
93 } 97 }
94 if (path != NULL) { 98 if (path != NULL) {
95 lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir()); 99 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
96 if (lookup == NULL) return(0); 100 if (lookup == NULL)
97 if (X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_PEM) != 1) 101 return (0);
98 return(0); 102 if (X509_LOOKUP_add_dir(lookup, path, X509_FILETYPE_PEM) != 1)
103 return (0);
99 } 104 }
100 if ((path == NULL) && (file == NULL)) 105 if ((path == NULL) && (file == NULL))
101 return(0); 106 return (0);
102 return(1); 107 return (1);
103} 108}
104
105#endif 109#endif