diff options
Diffstat (limited to 'src/lib/libcrypto/x509')
24 files changed, 0 insertions, 7660 deletions
diff --git a/src/lib/libcrypto/x509/by_dir.c b/src/lib/libcrypto/x509/by_dir.c deleted file mode 100644 index 448bd7e69c..0000000000 --- a/src/lib/libcrypto/x509/by_dir.c +++ /dev/null | |||
@@ -1,351 +0,0 @@ | |||
1 | /* crypto/x509/by_dir.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <time.h> | ||
61 | #include <errno.h> | ||
62 | |||
63 | #include "cryptlib.h" | ||
64 | |||
65 | #ifndef NO_SYS_TYPES_H | ||
66 | # include <sys/types.h> | ||
67 | #endif | ||
68 | #ifdef MAC_OS_pre_X | ||
69 | # include <stat.h> | ||
70 | #else | ||
71 | # include <sys/stat.h> | ||
72 | #endif | ||
73 | |||
74 | #include <openssl/lhash.h> | ||
75 | #include <openssl/x509.h> | ||
76 | |||
77 | typedef struct lookup_dir_st | ||
78 | { | ||
79 | BUF_MEM *buffer; | ||
80 | int num_dirs; | ||
81 | char **dirs; | ||
82 | int *dirs_type; | ||
83 | int num_dirs_alloced; | ||
84 | } BY_DIR; | ||
85 | |||
86 | static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, | ||
87 | char **ret); | ||
88 | static int new_dir(X509_LOOKUP *lu); | ||
89 | static void free_dir(X509_LOOKUP *lu); | ||
90 | static int add_cert_dir(BY_DIR *ctx,const char *dir,int type); | ||
91 | static int get_cert_by_subject(X509_LOOKUP *xl,int type,X509_NAME *name, | ||
92 | X509_OBJECT *ret); | ||
93 | X509_LOOKUP_METHOD x509_dir_lookup= | ||
94 | { | ||
95 | "Load certs from files in a directory", | ||
96 | new_dir, /* new */ | ||
97 | free_dir, /* free */ | ||
98 | NULL, /* init */ | ||
99 | NULL, /* shutdown */ | ||
100 | dir_ctrl, /* ctrl */ | ||
101 | get_cert_by_subject, /* get_by_subject */ | ||
102 | NULL, /* get_by_issuer_serial */ | ||
103 | NULL, /* get_by_fingerprint */ | ||
104 | NULL, /* get_by_alias */ | ||
105 | }; | ||
106 | |||
107 | X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void) | ||
108 | { | ||
109 | return(&x509_dir_lookup); | ||
110 | } | ||
111 | |||
112 | static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, | ||
113 | char **retp) | ||
114 | { | ||
115 | int ret=0; | ||
116 | BY_DIR *ld; | ||
117 | char *dir; | ||
118 | |||
119 | ld=(BY_DIR *)ctx->method_data; | ||
120 | |||
121 | switch (cmd) | ||
122 | { | ||
123 | case X509_L_ADD_DIR: | ||
124 | if (argl == X509_FILETYPE_DEFAULT) | ||
125 | { | ||
126 | ret=add_cert_dir(ld,X509_get_default_cert_dir(), | ||
127 | X509_FILETYPE_PEM); | ||
128 | if (!ret) | ||
129 | { | ||
130 | X509err(X509_F_DIR_CTRL,X509_R_LOADING_CERT_DIR); | ||
131 | } | ||
132 | else | ||
133 | { | ||
134 | dir=(char *)Getenv(X509_get_default_cert_dir_env()); | ||
135 | ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM); | ||
136 | } | ||
137 | } | ||
138 | else | ||
139 | ret=add_cert_dir(ld,argp,(int)argl); | ||
140 | break; | ||
141 | } | ||
142 | return(ret); | ||
143 | } | ||
144 | |||
145 | static int new_dir(X509_LOOKUP *lu) | ||
146 | { | ||
147 | BY_DIR *a; | ||
148 | |||
149 | if ((a=(BY_DIR *)OPENSSL_malloc(sizeof(BY_DIR))) == NULL) | ||
150 | return(0); | ||
151 | if ((a->buffer=BUF_MEM_new()) == NULL) | ||
152 | { | ||
153 | OPENSSL_free(a); | ||
154 | return(0); | ||
155 | } | ||
156 | a->num_dirs=0; | ||
157 | a->dirs=NULL; | ||
158 | a->dirs_type=NULL; | ||
159 | a->num_dirs_alloced=0; | ||
160 | lu->method_data=(char *)a; | ||
161 | return(1); | ||
162 | } | ||
163 | |||
164 | static void free_dir(X509_LOOKUP *lu) | ||
165 | { | ||
166 | BY_DIR *a; | ||
167 | int i; | ||
168 | |||
169 | a=(BY_DIR *)lu->method_data; | ||
170 | for (i=0; i<a->num_dirs; i++) | ||
171 | if (a->dirs[i] != NULL) OPENSSL_free(a->dirs[i]); | ||
172 | if (a->dirs != NULL) OPENSSL_free(a->dirs); | ||
173 | if (a->dirs_type != NULL) OPENSSL_free(a->dirs_type); | ||
174 | if (a->buffer != NULL) BUF_MEM_free(a->buffer); | ||
175 | OPENSSL_free(a); | ||
176 | } | ||
177 | |||
178 | static int add_cert_dir(BY_DIR *ctx, const char *dir, int type) | ||
179 | { | ||
180 | int j,len; | ||
181 | int *ip; | ||
182 | const char *s,*ss,*p; | ||
183 | char **pp; | ||
184 | |||
185 | if (dir == NULL || !*dir) | ||
186 | { | ||
187 | X509err(X509_F_ADD_CERT_DIR,X509_R_INVALID_DIRECTORY); | ||
188 | return 0; | ||
189 | } | ||
190 | |||
191 | s=dir; | ||
192 | p=s; | ||
193 | for (;;) | ||
194 | { | ||
195 | if ((*p == LIST_SEPARATOR_CHAR) || (*p == '\0')) | ||
196 | { | ||
197 | ss=s; | ||
198 | s=p+1; | ||
199 | len=(int)(p-ss); | ||
200 | if (len == 0) continue; | ||
201 | for (j=0; j<ctx->num_dirs; j++) | ||
202 | if (strncmp(ctx->dirs[j],ss,(unsigned int)len) == 0) | ||
203 | continue; | ||
204 | if (ctx->num_dirs_alloced < (ctx->num_dirs+1)) | ||
205 | { | ||
206 | ctx->num_dirs_alloced+=10; | ||
207 | pp=(char **)OPENSSL_malloc(ctx->num_dirs_alloced* | ||
208 | sizeof(char *)); | ||
209 | ip=(int *)OPENSSL_malloc(ctx->num_dirs_alloced* | ||
210 | sizeof(int)); | ||
211 | if ((pp == NULL) || (ip == NULL)) | ||
212 | { | ||
213 | X509err(X509_F_ADD_CERT_DIR,ERR_R_MALLOC_FAILURE); | ||
214 | return(0); | ||
215 | } | ||
216 | memcpy(pp,ctx->dirs,(ctx->num_dirs_alloced-10)* | ||
217 | sizeof(char *)); | ||
218 | memcpy(ip,ctx->dirs_type,(ctx->num_dirs_alloced-10)* | ||
219 | sizeof(int)); | ||
220 | if (ctx->dirs != NULL) | ||
221 | OPENSSL_free(ctx->dirs); | ||
222 | if (ctx->dirs_type != NULL) | ||
223 | OPENSSL_free(ctx->dirs_type); | ||
224 | ctx->dirs=pp; | ||
225 | ctx->dirs_type=ip; | ||
226 | } | ||
227 | ctx->dirs_type[ctx->num_dirs]=type; | ||
228 | ctx->dirs[ctx->num_dirs]=(char *)OPENSSL_malloc((unsigned int)len+1); | ||
229 | if (ctx->dirs[ctx->num_dirs] == NULL) return(0); | ||
230 | strncpy(ctx->dirs[ctx->num_dirs],ss,(unsigned int)len); | ||
231 | ctx->dirs[ctx->num_dirs][len]='\0'; | ||
232 | ctx->num_dirs++; | ||
233 | } | ||
234 | if (*p == '\0') break; | ||
235 | p++; | ||
236 | } | ||
237 | return(1); | ||
238 | } | ||
239 | |||
240 | static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name, | ||
241 | X509_OBJECT *ret) | ||
242 | { | ||
243 | BY_DIR *ctx; | ||
244 | union { | ||
245 | struct { | ||
246 | X509 st_x509; | ||
247 | X509_CINF st_x509_cinf; | ||
248 | } x509; | ||
249 | struct { | ||
250 | X509_CRL st_crl; | ||
251 | X509_CRL_INFO st_crl_info; | ||
252 | } crl; | ||
253 | } data; | ||
254 | int ok=0; | ||
255 | int i,j,k; | ||
256 | unsigned long h; | ||
257 | BUF_MEM *b=NULL; | ||
258 | struct stat st; | ||
259 | X509_OBJECT stmp,*tmp; | ||
260 | const char *postfix=""; | ||
261 | |||
262 | if (name == NULL) return(0); | ||
263 | |||
264 | stmp.type=type; | ||
265 | if (type == X509_LU_X509) | ||
266 | { | ||
267 | data.x509.st_x509.cert_info= &data.x509.st_x509_cinf; | ||
268 | data.x509.st_x509_cinf.subject=name; | ||
269 | stmp.data.x509= &data.x509.st_x509; | ||
270 | postfix=""; | ||
271 | } | ||
272 | else if (type == X509_LU_CRL) | ||
273 | { | ||
274 | data.crl.st_crl.crl= &data.crl.st_crl_info; | ||
275 | data.crl.st_crl_info.issuer=name; | ||
276 | stmp.data.crl= &data.crl.st_crl; | ||
277 | postfix="r"; | ||
278 | } | ||
279 | else | ||
280 | { | ||
281 | X509err(X509_F_GET_CERT_BY_SUBJECT,X509_R_WRONG_LOOKUP_TYPE); | ||
282 | goto finish; | ||
283 | } | ||
284 | |||
285 | if ((b=BUF_MEM_new()) == NULL) | ||
286 | { | ||
287 | X509err(X509_F_GET_CERT_BY_SUBJECT,ERR_R_BUF_LIB); | ||
288 | goto finish; | ||
289 | } | ||
290 | |||
291 | ctx=(BY_DIR *)xl->method_data; | ||
292 | |||
293 | h=X509_NAME_hash(name); | ||
294 | for (i=0; i<ctx->num_dirs; i++) | ||
295 | { | ||
296 | j=strlen(ctx->dirs[i])+1+8+6+1+1; | ||
297 | if (!BUF_MEM_grow(b,j)) | ||
298 | { | ||
299 | X509err(X509_F_GET_CERT_BY_SUBJECT,ERR_R_MALLOC_FAILURE); | ||
300 | goto finish; | ||
301 | } | ||
302 | k=0; | ||
303 | for (;;) | ||
304 | { | ||
305 | sprintf(b->data,"%s/%08lx.%s%d",ctx->dirs[i],h, | ||
306 | postfix,k); | ||
307 | k++; | ||
308 | if (stat(b->data,&st) < 0) | ||
309 | break; | ||
310 | /* found one. */ | ||
311 | if (type == X509_LU_X509) | ||
312 | { | ||
313 | if ((X509_load_cert_file(xl,b->data, | ||
314 | ctx->dirs_type[i])) == 0) | ||
315 | break; | ||
316 | } | ||
317 | else if (type == X509_LU_CRL) | ||
318 | { | ||
319 | if ((X509_load_crl_file(xl,b->data, | ||
320 | ctx->dirs_type[i])) == 0) | ||
321 | break; | ||
322 | } | ||
323 | /* else case will caught higher up */ | ||
324 | } | ||
325 | |||
326 | /* we have added it to the cache so now pull | ||
327 | * it out again */ | ||
328 | CRYPTO_r_lock(CRYPTO_LOCK_X509_STORE); | ||
329 | j = sk_X509_OBJECT_find(xl->store_ctx->objs,&stmp); | ||
330 | if(j != -1) tmp=sk_X509_OBJECT_value(xl->store_ctx->objs,j); | ||
331 | else tmp = NULL; | ||
332 | CRYPTO_r_unlock(CRYPTO_LOCK_X509_STORE); | ||
333 | |||
334 | if (tmp != NULL) | ||
335 | { | ||
336 | ok=1; | ||
337 | ret->type=tmp->type; | ||
338 | memcpy(&ret->data,&tmp->data,sizeof(ret->data)); | ||
339 | /* If we were going to up the reference count, | ||
340 | * we would need to do it on a perl 'type' | ||
341 | * basis */ | ||
342 | /* CRYPTO_add(&tmp->data.x509->references,1, | ||
343 | CRYPTO_LOCK_X509);*/ | ||
344 | goto finish; | ||
345 | } | ||
346 | } | ||
347 | finish: | ||
348 | if (b != NULL) BUF_MEM_free(b); | ||
349 | return(ok); | ||
350 | } | ||
351 | |||
diff --git a/src/lib/libcrypto/x509/by_file.c b/src/lib/libcrypto/x509/by_file.c deleted file mode 100644 index 78e9240a8d..0000000000 --- a/src/lib/libcrypto/x509/by_file.c +++ /dev/null | |||
@@ -1,298 +0,0 @@ | |||
1 | /* crypto/x509/by_file.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <time.h> | ||
61 | #include <errno.h> | ||
62 | |||
63 | #include "cryptlib.h" | ||
64 | #include <openssl/lhash.h> | ||
65 | #include <openssl/buffer.h> | ||
66 | #include <openssl/x509.h> | ||
67 | #include <openssl/pem.h> | ||
68 | |||
69 | #ifndef NO_STDIO | ||
70 | |||
71 | static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, | ||
72 | long argl, char **ret); | ||
73 | X509_LOOKUP_METHOD x509_file_lookup= | ||
74 | { | ||
75 | "Load file into cache", | ||
76 | NULL, /* new */ | ||
77 | NULL, /* free */ | ||
78 | NULL, /* init */ | ||
79 | NULL, /* shutdown */ | ||
80 | by_file_ctrl, /* ctrl */ | ||
81 | NULL, /* get_by_subject */ | ||
82 | NULL, /* get_by_issuer_serial */ | ||
83 | NULL, /* get_by_fingerprint */ | ||
84 | NULL, /* get_by_alias */ | ||
85 | }; | ||
86 | |||
87 | X509_LOOKUP_METHOD *X509_LOOKUP_file(void) | ||
88 | { | ||
89 | return(&x509_file_lookup); | ||
90 | } | ||
91 | |||
92 | static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, | ||
93 | char **ret) | ||
94 | { | ||
95 | int ok=0; | ||
96 | char *file; | ||
97 | |||
98 | switch (cmd) | ||
99 | { | ||
100 | case X509_L_FILE_LOAD: | ||
101 | if (argl == X509_FILETYPE_DEFAULT) | ||
102 | { | ||
103 | ok = (X509_load_cert_crl_file(ctx,X509_get_default_cert_file(), | ||
104 | X509_FILETYPE_PEM) != 0); | ||
105 | if (!ok) | ||
106 | { | ||
107 | X509err(X509_F_BY_FILE_CTRL,X509_R_LOADING_DEFAULTS); | ||
108 | } | ||
109 | else | ||
110 | { | ||
111 | file=(char *)Getenv(X509_get_default_cert_file_env()); | ||
112 | ok = (X509_load_cert_crl_file(ctx,file, | ||
113 | X509_FILETYPE_PEM) != 0); | ||
114 | } | ||
115 | } | ||
116 | else | ||
117 | { | ||
118 | if(argl == X509_FILETYPE_PEM) | ||
119 | ok = (X509_load_cert_crl_file(ctx,argp, | ||
120 | X509_FILETYPE_PEM) != 0); | ||
121 | else | ||
122 | ok = (X509_load_cert_file(ctx,argp,(int)argl) != 0); | ||
123 | } | ||
124 | break; | ||
125 | } | ||
126 | return(ok); | ||
127 | } | ||
128 | |||
129 | int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) | ||
130 | { | ||
131 | int ret=0; | ||
132 | BIO *in=NULL; | ||
133 | int i,count=0; | ||
134 | X509 *x=NULL; | ||
135 | |||
136 | if (file == NULL) return(1); | ||
137 | in=BIO_new(BIO_s_file_internal()); | ||
138 | |||
139 | if ((in == NULL) || (BIO_read_filename(in,file) <= 0)) | ||
140 | { | ||
141 | X509err(X509_F_X509_LOAD_CERT_FILE,ERR_R_SYS_LIB); | ||
142 | goto err; | ||
143 | } | ||
144 | |||
145 | if (type == X509_FILETYPE_PEM) | ||
146 | { | ||
147 | for (;;) | ||
148 | { | ||
149 | x=PEM_read_bio_X509_AUX(in,NULL,NULL,NULL); | ||
150 | if (x == NULL) | ||
151 | { | ||
152 | if ((ERR_GET_REASON(ERR_peek_error()) == | ||
153 | PEM_R_NO_START_LINE) && (count > 0)) | ||
154 | { | ||
155 | ERR_clear_error(); | ||
156 | break; | ||
157 | } | ||
158 | else | ||
159 | { | ||
160 | X509err(X509_F_X509_LOAD_CERT_FILE, | ||
161 | ERR_R_PEM_LIB); | ||
162 | goto err; | ||
163 | } | ||
164 | } | ||
165 | i=X509_STORE_add_cert(ctx->store_ctx,x); | ||
166 | if (!i) goto err; | ||
167 | count++; | ||
168 | X509_free(x); | ||
169 | x=NULL; | ||
170 | } | ||
171 | ret=count; | ||
172 | } | ||
173 | else if (type == X509_FILETYPE_ASN1) | ||
174 | { | ||
175 | x=d2i_X509_bio(in,NULL); | ||
176 | if (x == NULL) | ||
177 | { | ||
178 | X509err(X509_F_X509_LOAD_CERT_FILE,ERR_R_ASN1_LIB); | ||
179 | goto err; | ||
180 | } | ||
181 | i=X509_STORE_add_cert(ctx->store_ctx,x); | ||
182 | if (!i) goto err; | ||
183 | ret=i; | ||
184 | } | ||
185 | else | ||
186 | { | ||
187 | X509err(X509_F_X509_LOAD_CERT_FILE,X509_R_BAD_X509_FILETYPE); | ||
188 | goto err; | ||
189 | } | ||
190 | err: | ||
191 | if (x != NULL) X509_free(x); | ||
192 | if (in != NULL) BIO_free(in); | ||
193 | return(ret); | ||
194 | } | ||
195 | |||
196 | int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) | ||
197 | { | ||
198 | int ret=0; | ||
199 | BIO *in=NULL; | ||
200 | int i,count=0; | ||
201 | X509_CRL *x=NULL; | ||
202 | |||
203 | if (file == NULL) return(1); | ||
204 | in=BIO_new(BIO_s_file_internal()); | ||
205 | |||
206 | if ((in == NULL) || (BIO_read_filename(in,file) <= 0)) | ||
207 | { | ||
208 | X509err(X509_F_X509_LOAD_CRL_FILE,ERR_R_SYS_LIB); | ||
209 | goto err; | ||
210 | } | ||
211 | |||
212 | if (type == X509_FILETYPE_PEM) | ||
213 | { | ||
214 | for (;;) | ||
215 | { | ||
216 | x=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL); | ||
217 | if (x == NULL) | ||
218 | { | ||
219 | if ((ERR_GET_REASON(ERR_peek_error()) == | ||
220 | PEM_R_NO_START_LINE) && (count > 0)) | ||
221 | { | ||
222 | ERR_clear_error(); | ||
223 | break; | ||
224 | } | ||
225 | else | ||
226 | { | ||
227 | X509err(X509_F_X509_LOAD_CRL_FILE, | ||
228 | ERR_R_PEM_LIB); | ||
229 | goto err; | ||
230 | } | ||
231 | } | ||
232 | i=X509_STORE_add_crl(ctx->store_ctx,x); | ||
233 | if (!i) goto err; | ||
234 | count++; | ||
235 | X509_CRL_free(x); | ||
236 | x=NULL; | ||
237 | } | ||
238 | ret=count; | ||
239 | } | ||
240 | else if (type == X509_FILETYPE_ASN1) | ||
241 | { | ||
242 | x=d2i_X509_CRL_bio(in,NULL); | ||
243 | if (x == NULL) | ||
244 | { | ||
245 | X509err(X509_F_X509_LOAD_CRL_FILE,ERR_R_ASN1_LIB); | ||
246 | goto err; | ||
247 | } | ||
248 | i=X509_STORE_add_crl(ctx->store_ctx,x); | ||
249 | if (!i) goto err; | ||
250 | ret=i; | ||
251 | } | ||
252 | else | ||
253 | { | ||
254 | X509err(X509_F_X509_LOAD_CRL_FILE,X509_R_BAD_X509_FILETYPE); | ||
255 | goto err; | ||
256 | } | ||
257 | err: | ||
258 | if (x != NULL) X509_CRL_free(x); | ||
259 | if (in != NULL) BIO_free(in); | ||
260 | return(ret); | ||
261 | } | ||
262 | |||
263 | int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type) | ||
264 | { | ||
265 | STACK_OF(X509_INFO) *inf; | ||
266 | X509_INFO *itmp; | ||
267 | BIO *in; | ||
268 | int i, count = 0; | ||
269 | if(type != X509_FILETYPE_PEM) | ||
270 | return X509_load_cert_file(ctx, file, type); | ||
271 | in = BIO_new_file(file, "r"); | ||
272 | if(!in) { | ||
273 | X509err(X509_F_X509_LOAD_CERT_CRL_FILE,ERR_R_SYS_LIB); | ||
274 | return 0; | ||
275 | } | ||
276 | inf = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL); | ||
277 | BIO_free(in); | ||
278 | if(!inf) { | ||
279 | X509err(X509_F_X509_LOAD_CERT_CRL_FILE,ERR_R_PEM_LIB); | ||
280 | return 0; | ||
281 | } | ||
282 | for(i = 0; i < sk_X509_INFO_num(inf); i++) { | ||
283 | itmp = sk_X509_INFO_value(inf, i); | ||
284 | if(itmp->x509) { | ||
285 | X509_STORE_add_cert(ctx->store_ctx, itmp->x509); | ||
286 | count++; | ||
287 | } else if(itmp->crl) { | ||
288 | X509_STORE_add_crl(ctx->store_ctx, itmp->crl); | ||
289 | count++; | ||
290 | } | ||
291 | } | ||
292 | sk_X509_INFO_pop_free(inf, X509_INFO_free); | ||
293 | return count; | ||
294 | } | ||
295 | |||
296 | |||
297 | #endif /* NO_STDIO */ | ||
298 | |||
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h deleted file mode 100644 index 813c8adffd..0000000000 --- a/src/lib/libcrypto/x509/x509.h +++ /dev/null | |||
@@ -1,1294 +0,0 @@ | |||
1 | /* crypto/x509/x509.h */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #ifndef HEADER_X509_H | ||
60 | #define HEADER_X509_H | ||
61 | |||
62 | #include <openssl/symhacks.h> | ||
63 | #ifndef NO_BUFFER | ||
64 | #include <openssl/buffer.h> | ||
65 | #endif | ||
66 | #ifndef NO_EVP | ||
67 | #include <openssl/evp.h> | ||
68 | #endif | ||
69 | #ifndef NO_BIO | ||
70 | #include <openssl/bio.h> | ||
71 | #endif | ||
72 | #include <openssl/stack.h> | ||
73 | #include <openssl/asn1.h> | ||
74 | #include <openssl/safestack.h> | ||
75 | |||
76 | #ifndef NO_RSA | ||
77 | #include <openssl/rsa.h> | ||
78 | #endif | ||
79 | |||
80 | #ifndef NO_DSA | ||
81 | #include <openssl/dsa.h> | ||
82 | #endif | ||
83 | |||
84 | #ifndef NO_DH | ||
85 | #include <openssl/dh.h> | ||
86 | #endif | ||
87 | |||
88 | #include <openssl/evp.h> | ||
89 | |||
90 | |||
91 | #ifdef __cplusplus | ||
92 | extern "C" { | ||
93 | #endif | ||
94 | |||
95 | #ifdef WIN32 | ||
96 | /* Under Win32 this is defined in wincrypt.h */ | ||
97 | #undef X509_NAME | ||
98 | #endif | ||
99 | |||
100 | /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ | ||
101 | #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ | ||
102 | #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ | ||
103 | |||
104 | #define X509_FILETYPE_PEM 1 | ||
105 | #define X509_FILETYPE_ASN1 2 | ||
106 | #define X509_FILETYPE_DEFAULT 3 | ||
107 | |||
108 | #define X509v3_KU_DIGITAL_SIGNATURE 0x0080 | ||
109 | #define X509v3_KU_NON_REPUDIATION 0x0040 | ||
110 | #define X509v3_KU_KEY_ENCIPHERMENT 0x0020 | ||
111 | #define X509v3_KU_DATA_ENCIPHERMENT 0x0010 | ||
112 | #define X509v3_KU_KEY_AGREEMENT 0x0008 | ||
113 | #define X509v3_KU_KEY_CERT_SIGN 0x0004 | ||
114 | #define X509v3_KU_CRL_SIGN 0x0002 | ||
115 | #define X509v3_KU_ENCIPHER_ONLY 0x0001 | ||
116 | #define X509v3_KU_DECIPHER_ONLY 0x8000 | ||
117 | #define X509v3_KU_UNDEF 0xffff | ||
118 | |||
119 | typedef struct X509_objects_st | ||
120 | { | ||
121 | int nid; | ||
122 | int (*a2i)(); | ||
123 | int (*i2a)(); | ||
124 | } X509_OBJECTS; | ||
125 | |||
126 | typedef struct X509_algor_st | ||
127 | { | ||
128 | ASN1_OBJECT *algorithm; | ||
129 | ASN1_TYPE *parameter; | ||
130 | } X509_ALGOR; | ||
131 | |||
132 | DECLARE_STACK_OF(X509_ALGOR) | ||
133 | DECLARE_ASN1_SET_OF(X509_ALGOR) | ||
134 | |||
135 | typedef struct X509_val_st | ||
136 | { | ||
137 | ASN1_TIME *notBefore; | ||
138 | ASN1_TIME *notAfter; | ||
139 | } X509_VAL; | ||
140 | |||
141 | typedef struct X509_pubkey_st | ||
142 | { | ||
143 | X509_ALGOR *algor; | ||
144 | ASN1_BIT_STRING *public_key; | ||
145 | EVP_PKEY *pkey; | ||
146 | } X509_PUBKEY; | ||
147 | |||
148 | typedef struct X509_sig_st | ||
149 | { | ||
150 | X509_ALGOR *algor; | ||
151 | ASN1_OCTET_STRING *digest; | ||
152 | } X509_SIG; | ||
153 | |||
154 | typedef struct X509_name_entry_st | ||
155 | { | ||
156 | ASN1_OBJECT *object; | ||
157 | ASN1_STRING *value; | ||
158 | int set; | ||
159 | int size; /* temp variable */ | ||
160 | } X509_NAME_ENTRY; | ||
161 | |||
162 | DECLARE_STACK_OF(X509_NAME_ENTRY) | ||
163 | DECLARE_ASN1_SET_OF(X509_NAME_ENTRY) | ||
164 | |||
165 | /* we always keep X509_NAMEs in 2 forms. */ | ||
166 | typedef struct X509_name_st | ||
167 | { | ||
168 | STACK_OF(X509_NAME_ENTRY) *entries; | ||
169 | int modified; /* true if 'bytes' needs to be built */ | ||
170 | #ifndef NO_BUFFER | ||
171 | BUF_MEM *bytes; | ||
172 | #else | ||
173 | char *bytes; | ||
174 | #endif | ||
175 | unsigned long hash; /* Keep the hash around for lookups */ | ||
176 | } X509_NAME; | ||
177 | |||
178 | DECLARE_STACK_OF(X509_NAME) | ||
179 | |||
180 | #define X509_EX_V_NETSCAPE_HACK 0x8000 | ||
181 | #define X509_EX_V_INIT 0x0001 | ||
182 | typedef struct X509_extension_st | ||
183 | { | ||
184 | ASN1_OBJECT *object; | ||
185 | short critical; | ||
186 | short netscape_hack; | ||
187 | ASN1_OCTET_STRING *value; | ||
188 | struct v3_ext_method *method; /* V3 method to use */ | ||
189 | void *ext_val; /* extension value */ | ||
190 | } X509_EXTENSION; | ||
191 | |||
192 | DECLARE_STACK_OF(X509_EXTENSION) | ||
193 | DECLARE_ASN1_SET_OF(X509_EXTENSION) | ||
194 | |||
195 | /* a sequence of these are used */ | ||
196 | typedef struct x509_attributes_st | ||
197 | { | ||
198 | ASN1_OBJECT *object; | ||
199 | int set; /* 1 for a set, 0 for a single item (which is wrong) */ | ||
200 | union { | ||
201 | char *ptr; | ||
202 | /* 1 */ STACK_OF(ASN1_TYPE) *set; | ||
203 | /* 0 */ ASN1_TYPE *single; | ||
204 | } value; | ||
205 | } X509_ATTRIBUTE; | ||
206 | |||
207 | DECLARE_STACK_OF(X509_ATTRIBUTE) | ||
208 | DECLARE_ASN1_SET_OF(X509_ATTRIBUTE) | ||
209 | |||
210 | typedef struct X509_req_info_st | ||
211 | { | ||
212 | unsigned char *asn1; | ||
213 | int length; | ||
214 | ASN1_INTEGER *version; | ||
215 | X509_NAME *subject; | ||
216 | X509_PUBKEY *pubkey; | ||
217 | /* d=2 hl=2 l= 0 cons: cont: 00 */ | ||
218 | STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */ | ||
219 | int req_kludge; | ||
220 | } X509_REQ_INFO; | ||
221 | |||
222 | typedef struct X509_req_st | ||
223 | { | ||
224 | X509_REQ_INFO *req_info; | ||
225 | X509_ALGOR *sig_alg; | ||
226 | ASN1_BIT_STRING *signature; | ||
227 | int references; | ||
228 | } X509_REQ; | ||
229 | |||
230 | typedef struct x509_cinf_st | ||
231 | { | ||
232 | ASN1_INTEGER *version; /* [ 0 ] default of v1 */ | ||
233 | ASN1_INTEGER *serialNumber; | ||
234 | X509_ALGOR *signature; | ||
235 | X509_NAME *issuer; | ||
236 | X509_VAL *validity; | ||
237 | X509_NAME *subject; | ||
238 | X509_PUBKEY *key; | ||
239 | ASN1_BIT_STRING *issuerUID; /* [ 1 ] optional in v2 */ | ||
240 | ASN1_BIT_STRING *subjectUID; /* [ 2 ] optional in v2 */ | ||
241 | STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ | ||
242 | } X509_CINF; | ||
243 | |||
244 | /* This stuff is certificate "auxiliary info" | ||
245 | * it contains details which are useful in certificate | ||
246 | * stores and databases. When used this is tagged onto | ||
247 | * the end of the certificate itself | ||
248 | */ | ||
249 | |||
250 | typedef struct x509_cert_aux_st | ||
251 | { | ||
252 | STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ | ||
253 | STACK_OF(ASN1_OBJECT) *reject; /* rejected uses */ | ||
254 | ASN1_UTF8STRING *alias; /* "friendly name" */ | ||
255 | ASN1_OCTET_STRING *keyid; /* key id of private key */ | ||
256 | STACK_OF(X509_ALGOR) *other; /* other unspecified info */ | ||
257 | } X509_CERT_AUX; | ||
258 | |||
259 | typedef struct x509_st | ||
260 | { | ||
261 | X509_CINF *cert_info; | ||
262 | X509_ALGOR *sig_alg; | ||
263 | ASN1_BIT_STRING *signature; | ||
264 | int valid; | ||
265 | int references; | ||
266 | char *name; | ||
267 | CRYPTO_EX_DATA ex_data; | ||
268 | /* These contain copies of various extension values */ | ||
269 | long ex_pathlen; | ||
270 | unsigned long ex_flags; | ||
271 | unsigned long ex_kusage; | ||
272 | unsigned long ex_xkusage; | ||
273 | unsigned long ex_nscert; | ||
274 | ASN1_OCTET_STRING *skid; | ||
275 | struct AUTHORITY_KEYID_st *akid; | ||
276 | #ifndef NO_SHA | ||
277 | unsigned char sha1_hash[SHA_DIGEST_LENGTH]; | ||
278 | #endif | ||
279 | X509_CERT_AUX *aux; | ||
280 | } X509; | ||
281 | |||
282 | DECLARE_STACK_OF(X509) | ||
283 | DECLARE_ASN1_SET_OF(X509) | ||
284 | |||
285 | /* This is used for a table of trust checking functions */ | ||
286 | |||
287 | typedef struct x509_trust_st { | ||
288 | int trust; | ||
289 | int flags; | ||
290 | int (*check_trust)(struct x509_trust_st *, X509 *, int); | ||
291 | char *name; | ||
292 | int arg1; | ||
293 | void *arg2; | ||
294 | } X509_TRUST; | ||
295 | |||
296 | DECLARE_STACK_OF(X509_TRUST) | ||
297 | |||
298 | /* standard trust ids */ | ||
299 | |||
300 | #define X509_TRUST_DEFAULT -1 /* Only valid in purpose settings */ | ||
301 | |||
302 | #define X509_TRUST_COMPAT 1 | ||
303 | #define X509_TRUST_SSL_CLIENT 2 | ||
304 | #define X509_TRUST_SSL_SERVER 3 | ||
305 | #define X509_TRUST_EMAIL 4 | ||
306 | #define X509_TRUST_OBJECT_SIGN 5 | ||
307 | |||
308 | /* Keep these up to date! */ | ||
309 | #define X509_TRUST_MIN 1 | ||
310 | #define X509_TRUST_MAX 5 | ||
311 | |||
312 | |||
313 | /* trust_flags values */ | ||
314 | #define X509_TRUST_DYNAMIC 1 | ||
315 | #define X509_TRUST_DYNAMIC_NAME 2 | ||
316 | |||
317 | /* check_trust return codes */ | ||
318 | |||
319 | #define X509_TRUST_TRUSTED 1 | ||
320 | #define X509_TRUST_REJECTED 2 | ||
321 | #define X509_TRUST_UNTRUSTED 3 | ||
322 | |||
323 | /* Flags specific to X509_NAME_print_ex() */ | ||
324 | |||
325 | /* The field separator information */ | ||
326 | |||
327 | #define XN_FLAG_SEP_MASK (0xf << 16) | ||
328 | |||
329 | #define XN_FLAG_COMPAT 0 /* Traditional SSLeay: use old X509_NAME_print */ | ||
330 | #define XN_FLAG_SEP_COMMA_PLUS (1 << 16) /* RFC2253 ,+ */ | ||
331 | #define XN_FLAG_SEP_CPLUS_SPC (2 << 16) /* ,+ spaced: more readable */ | ||
332 | #define XN_FLAG_SEP_SPLUS_SPC (3 << 16) /* ;+ spaced */ | ||
333 | #define XN_FLAG_SEP_MULTILINE (4 << 16) /* One line per field */ | ||
334 | |||
335 | #define XN_FLAG_DN_REV (1 << 20) /* Reverse DN order */ | ||
336 | |||
337 | /* How the field name is shown */ | ||
338 | |||
339 | #define XN_FLAG_FN_MASK (0x3 << 21) | ||
340 | |||
341 | #define XN_FLAG_FN_SN 0 /* Object short name */ | ||
342 | #define XN_FLAG_FN_LN (1 << 21) /* Object long name */ | ||
343 | #define XN_FLAG_FN_OID (2 << 21) /* Always use OIDs */ | ||
344 | #define XN_FLAG_FN_NONE (3 << 21) /* No field names */ | ||
345 | |||
346 | #define XN_FLAG_SPC_EQ (1 << 23) /* Put spaces round '=' */ | ||
347 | |||
348 | /* This determines if we dump fields we don't recognise: | ||
349 | * RFC2253 requires this. | ||
350 | */ | ||
351 | |||
352 | #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24) | ||
353 | |||
354 | /* Complete set of RFC2253 flags */ | ||
355 | |||
356 | #define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \ | ||
357 | XN_FLAG_SEP_COMMA_PLUS | \ | ||
358 | XN_FLAG_DN_REV | \ | ||
359 | XN_FLAG_FN_SN | \ | ||
360 | XN_FLAG_DUMP_UNKNOWN_FIELDS) | ||
361 | |||
362 | /* readable oneline form */ | ||
363 | |||
364 | #define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \ | ||
365 | ASN1_STRFLGS_ESC_QUOTE | \ | ||
366 | XN_FLAG_SEP_CPLUS_SPC | \ | ||
367 | XN_FLAG_SPC_EQ | \ | ||
368 | XN_FLAG_FN_SN) | ||
369 | |||
370 | /* readable multiline form */ | ||
371 | |||
372 | #define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \ | ||
373 | ASN1_STRFLGS_ESC_MSB | \ | ||
374 | XN_FLAG_SEP_MULTILINE | \ | ||
375 | XN_FLAG_SPC_EQ | \ | ||
376 | XN_FLAG_FN_LN) | ||
377 | |||
378 | typedef struct X509_revoked_st | ||
379 | { | ||
380 | ASN1_INTEGER *serialNumber; | ||
381 | ASN1_TIME *revocationDate; | ||
382 | STACK_OF(X509_EXTENSION) /* optional */ *extensions; | ||
383 | int sequence; /* load sequence */ | ||
384 | } X509_REVOKED; | ||
385 | |||
386 | DECLARE_STACK_OF(X509_REVOKED) | ||
387 | DECLARE_ASN1_SET_OF(X509_REVOKED) | ||
388 | |||
389 | typedef struct X509_crl_info_st | ||
390 | { | ||
391 | ASN1_INTEGER *version; | ||
392 | X509_ALGOR *sig_alg; | ||
393 | X509_NAME *issuer; | ||
394 | ASN1_TIME *lastUpdate; | ||
395 | ASN1_TIME *nextUpdate; | ||
396 | STACK_OF(X509_REVOKED) *revoked; | ||
397 | STACK_OF(X509_EXTENSION) /* [0] */ *extensions; | ||
398 | } X509_CRL_INFO; | ||
399 | |||
400 | typedef struct X509_crl_st | ||
401 | { | ||
402 | /* actual signature */ | ||
403 | X509_CRL_INFO *crl; | ||
404 | X509_ALGOR *sig_alg; | ||
405 | ASN1_BIT_STRING *signature; | ||
406 | int references; | ||
407 | } X509_CRL; | ||
408 | |||
409 | DECLARE_STACK_OF(X509_CRL) | ||
410 | DECLARE_ASN1_SET_OF(X509_CRL) | ||
411 | |||
412 | typedef struct private_key_st | ||
413 | { | ||
414 | int version; | ||
415 | /* The PKCS#8 data types */ | ||
416 | X509_ALGOR *enc_algor; | ||
417 | ASN1_OCTET_STRING *enc_pkey; /* encrypted pub key */ | ||
418 | |||
419 | /* When decrypted, the following will not be NULL */ | ||
420 | EVP_PKEY *dec_pkey; | ||
421 | |||
422 | /* used to encrypt and decrypt */ | ||
423 | int key_length; | ||
424 | char *key_data; | ||
425 | int key_free; /* true if we should auto free key_data */ | ||
426 | |||
427 | /* expanded version of 'enc_algor' */ | ||
428 | EVP_CIPHER_INFO cipher; | ||
429 | |||
430 | int references; | ||
431 | } X509_PKEY; | ||
432 | |||
433 | #ifndef NO_EVP | ||
434 | typedef struct X509_info_st | ||
435 | { | ||
436 | X509 *x509; | ||
437 | X509_CRL *crl; | ||
438 | X509_PKEY *x_pkey; | ||
439 | |||
440 | EVP_CIPHER_INFO enc_cipher; | ||
441 | int enc_len; | ||
442 | char *enc_data; | ||
443 | |||
444 | int references; | ||
445 | } X509_INFO; | ||
446 | |||
447 | DECLARE_STACK_OF(X509_INFO) | ||
448 | #endif | ||
449 | |||
450 | /* The next 2 structures and their 8 routines were sent to me by | ||
451 | * Pat Richard <patr@x509.com> and are used to manipulate | ||
452 | * Netscapes spki structures - useful if you are writing a CA web page | ||
453 | */ | ||
454 | typedef struct Netscape_spkac_st | ||
455 | { | ||
456 | X509_PUBKEY *pubkey; | ||
457 | ASN1_IA5STRING *challenge; /* challenge sent in atlas >= PR2 */ | ||
458 | } NETSCAPE_SPKAC; | ||
459 | |||
460 | typedef struct Netscape_spki_st | ||
461 | { | ||
462 | NETSCAPE_SPKAC *spkac; /* signed public key and challenge */ | ||
463 | X509_ALGOR *sig_algor; | ||
464 | ASN1_BIT_STRING *signature; | ||
465 | } NETSCAPE_SPKI; | ||
466 | |||
467 | /* Netscape certificate sequence structure */ | ||
468 | typedef struct Netscape_certificate_sequence | ||
469 | { | ||
470 | ASN1_OBJECT *type; | ||
471 | STACK_OF(X509) *certs; | ||
472 | } NETSCAPE_CERT_SEQUENCE; | ||
473 | |||
474 | typedef struct CBCParameter_st | ||
475 | { | ||
476 | unsigned char iv[8]; | ||
477 | } CBC_PARAM; | ||
478 | |||
479 | /* Password based encryption structure */ | ||
480 | |||
481 | typedef struct PBEPARAM_st { | ||
482 | ASN1_OCTET_STRING *salt; | ||
483 | ASN1_INTEGER *iter; | ||
484 | } PBEPARAM; | ||
485 | |||
486 | /* Password based encryption V2 structures */ | ||
487 | |||
488 | typedef struct PBE2PARAM_st { | ||
489 | X509_ALGOR *keyfunc; | ||
490 | X509_ALGOR *encryption; | ||
491 | } PBE2PARAM; | ||
492 | |||
493 | typedef struct PBKDF2PARAM_st { | ||
494 | ASN1_TYPE *salt; /* Usually OCTET STRING but could be anything */ | ||
495 | ASN1_INTEGER *iter; | ||
496 | ASN1_INTEGER *keylength; | ||
497 | X509_ALGOR *prf; | ||
498 | } PBKDF2PARAM; | ||
499 | |||
500 | |||
501 | /* PKCS#8 private key info structure */ | ||
502 | |||
503 | typedef struct pkcs8_priv_key_info_st | ||
504 | { | ||
505 | int broken; /* Flag for various broken formats */ | ||
506 | #define PKCS8_OK 0 | ||
507 | #define PKCS8_NO_OCTET 1 | ||
508 | #define PKCS8_EMBEDDED_PARAM 2 | ||
509 | #define PKCS8_NS_DB 3 | ||
510 | ASN1_INTEGER *version; | ||
511 | X509_ALGOR *pkeyalg; | ||
512 | ASN1_TYPE *pkey; /* Should be OCTET STRING but some are broken */ | ||
513 | STACK_OF(X509_ATTRIBUTE) *attributes; | ||
514 | } PKCS8_PRIV_KEY_INFO; | ||
515 | |||
516 | #ifdef __cplusplus | ||
517 | } | ||
518 | #endif | ||
519 | |||
520 | #include <openssl/x509_vfy.h> | ||
521 | #include <openssl/pkcs7.h> | ||
522 | |||
523 | #ifdef __cplusplus | ||
524 | extern "C" { | ||
525 | #endif | ||
526 | |||
527 | #ifdef SSLEAY_MACROS | ||
528 | #define X509_verify(a,r) ASN1_verify((int (*)())i2d_X509_CINF,a->sig_alg,\ | ||
529 | a->signature,(char *)a->cert_info,r) | ||
530 | #define X509_REQ_verify(a,r) ASN1_verify((int (*)())i2d_X509_REQ_INFO, \ | ||
531 | a->sig_alg,a->signature,(char *)a->req_info,r) | ||
532 | #define X509_CRL_verify(a,r) ASN1_verify((int (*)())i2d_X509_CRL_INFO, \ | ||
533 | a->sig_alg, a->signature,(char *)a->crl,r) | ||
534 | |||
535 | #define X509_sign(x,pkey,md) \ | ||
536 | ASN1_sign((int (*)())i2d_X509_CINF, x->cert_info->signature, \ | ||
537 | x->sig_alg, x->signature, (char *)x->cert_info,pkey,md) | ||
538 | #define X509_REQ_sign(x,pkey,md) \ | ||
539 | ASN1_sign((int (*)())i2d_X509_REQ_INFO,x->sig_alg, NULL, \ | ||
540 | x->signature, (char *)x->req_info,pkey,md) | ||
541 | #define X509_CRL_sign(x,pkey,md) \ | ||
542 | ASN1_sign((int (*)())i2d_X509_CRL_INFO,x->crl->sig_alg,x->sig_alg, \ | ||
543 | x->signature, (char *)x->crl,pkey,md) | ||
544 | #define NETSCAPE_SPKI_sign(x,pkey,md) \ | ||
545 | ASN1_sign((int (*)())i2d_NETSCAPE_SPKAC, x->sig_algor,NULL, \ | ||
546 | x->signature, (char *)x->spkac,pkey,md) | ||
547 | |||
548 | #define X509_dup(x509) (X509 *)ASN1_dup((int (*)())i2d_X509, \ | ||
549 | (char *(*)())d2i_X509,(char *)x509) | ||
550 | #define X509_ATTRIBUTE_dup(xa) (X509_ATTRIBUTE *)ASN1_dup(\ | ||
551 | (int (*)())i2d_X509_ATTRIBUTE, \ | ||
552 | (char *(*)())d2i_X509_ATTRIBUTE,(char *)xa) | ||
553 | #define X509_EXTENSION_dup(ex) (X509_EXTENSION *)ASN1_dup( \ | ||
554 | (int (*)())i2d_X509_EXTENSION, \ | ||
555 | (char *(*)())d2i_X509_EXTENSION,(char *)ex) | ||
556 | #define d2i_X509_fp(fp,x509) (X509 *)ASN1_d2i_fp((char *(*)())X509_new, \ | ||
557 | (char *(*)())d2i_X509, (fp),(unsigned char **)(x509)) | ||
558 | #define i2d_X509_fp(fp,x509) ASN1_i2d_fp(i2d_X509,fp,(unsigned char *)x509) | ||
559 | #define d2i_X509_bio(bp,x509) (X509 *)ASN1_d2i_bio((char *(*)())X509_new, \ | ||
560 | (char *(*)())d2i_X509, (bp),(unsigned char **)(x509)) | ||
561 | #define i2d_X509_bio(bp,x509) ASN1_i2d_bio(i2d_X509,bp,(unsigned char *)x509) | ||
562 | |||
563 | #define X509_CRL_dup(crl) (X509_CRL *)ASN1_dup((int (*)())i2d_X509_CRL, \ | ||
564 | (char *(*)())d2i_X509_CRL,(char *)crl) | ||
565 | #define d2i_X509_CRL_fp(fp,crl) (X509_CRL *)ASN1_d2i_fp((char *(*)()) \ | ||
566 | X509_CRL_new,(char *(*)())d2i_X509_CRL, (fp),\ | ||
567 | (unsigned char **)(crl)) | ||
568 | #define i2d_X509_CRL_fp(fp,crl) ASN1_i2d_fp(i2d_X509_CRL,fp,\ | ||
569 | (unsigned char *)crl) | ||
570 | #define d2i_X509_CRL_bio(bp,crl) (X509_CRL *)ASN1_d2i_bio((char *(*)()) \ | ||
571 | X509_CRL_new,(char *(*)())d2i_X509_CRL, (bp),\ | ||
572 | (unsigned char **)(crl)) | ||
573 | #define i2d_X509_CRL_bio(bp,crl) ASN1_i2d_bio(i2d_X509_CRL,bp,\ | ||
574 | (unsigned char *)crl) | ||
575 | |||
576 | #define PKCS7_dup(p7) (PKCS7 *)ASN1_dup((int (*)())i2d_PKCS7, \ | ||
577 | (char *(*)())d2i_PKCS7,(char *)p7) | ||
578 | #define d2i_PKCS7_fp(fp,p7) (PKCS7 *)ASN1_d2i_fp((char *(*)()) \ | ||
579 | PKCS7_new,(char *(*)())d2i_PKCS7, (fp),\ | ||
580 | (unsigned char **)(p7)) | ||
581 | #define i2d_PKCS7_fp(fp,p7) ASN1_i2d_fp(i2d_PKCS7,fp,\ | ||
582 | (unsigned char *)p7) | ||
583 | #define d2i_PKCS7_bio(bp,p7) (PKCS7 *)ASN1_d2i_bio((char *(*)()) \ | ||
584 | PKCS7_new,(char *(*)())d2i_PKCS7, (bp),\ | ||
585 | (unsigned char **)(p7)) | ||
586 | #define i2d_PKCS7_bio(bp,p7) ASN1_i2d_bio(i2d_PKCS7,bp,\ | ||
587 | (unsigned char *)p7) | ||
588 | |||
589 | #define X509_REQ_dup(req) (X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ, \ | ||
590 | (char *(*)())d2i_X509_REQ,(char *)req) | ||
591 | #define d2i_X509_REQ_fp(fp,req) (X509_REQ *)ASN1_d2i_fp((char *(*)())\ | ||
592 | X509_REQ_new, (char *(*)())d2i_X509_REQ, (fp),\ | ||
593 | (unsigned char **)(req)) | ||
594 | #define i2d_X509_REQ_fp(fp,req) ASN1_i2d_fp(i2d_X509_REQ,fp,\ | ||
595 | (unsigned char *)req) | ||
596 | #define d2i_X509_REQ_bio(bp,req) (X509_REQ *)ASN1_d2i_bio((char *(*)())\ | ||
597 | X509_REQ_new, (char *(*)())d2i_X509_REQ, (bp),\ | ||
598 | (unsigned char **)(req)) | ||
599 | #define i2d_X509_REQ_bio(bp,req) ASN1_i2d_bio(i2d_X509_REQ,bp,\ | ||
600 | (unsigned char *)req) | ||
601 | |||
602 | #define RSAPublicKey_dup(rsa) (RSA *)ASN1_dup((int (*)())i2d_RSAPublicKey, \ | ||
603 | (char *(*)())d2i_RSAPublicKey,(char *)rsa) | ||
604 | #define RSAPrivateKey_dup(rsa) (RSA *)ASN1_dup((int (*)())i2d_RSAPrivateKey, \ | ||
605 | (char *(*)())d2i_RSAPrivateKey,(char *)rsa) | ||
606 | |||
607 | #define d2i_RSAPrivateKey_fp(fp,rsa) (RSA *)ASN1_d2i_fp((char *(*)())\ | ||
608 | RSA_new,(char *(*)())d2i_RSAPrivateKey, (fp), \ | ||
609 | (unsigned char **)(rsa)) | ||
610 | #define i2d_RSAPrivateKey_fp(fp,rsa) ASN1_i2d_fp(i2d_RSAPrivateKey,fp, \ | ||
611 | (unsigned char *)rsa) | ||
612 | #define d2i_RSAPrivateKey_bio(bp,rsa) (RSA *)ASN1_d2i_bio((char *(*)())\ | ||
613 | RSA_new,(char *(*)())d2i_RSAPrivateKey, (bp), \ | ||
614 | (unsigned char **)(rsa)) | ||
615 | #define i2d_RSAPrivateKey_bio(bp,rsa) ASN1_i2d_bio(i2d_RSAPrivateKey,bp, \ | ||
616 | (unsigned char *)rsa) | ||
617 | |||
618 | #define d2i_RSAPublicKey_fp(fp,rsa) (RSA *)ASN1_d2i_fp((char *(*)())\ | ||
619 | RSA_new,(char *(*)())d2i_RSAPublicKey, (fp), \ | ||
620 | (unsigned char **)(rsa)) | ||
621 | #define i2d_RSAPublicKey_fp(fp,rsa) ASN1_i2d_fp(i2d_RSAPublicKey,fp, \ | ||
622 | (unsigned char *)rsa) | ||
623 | #define d2i_RSAPublicKey_bio(bp,rsa) (RSA *)ASN1_d2i_bio((char *(*)())\ | ||
624 | RSA_new,(char *(*)())d2i_RSAPublicKey, (bp), \ | ||
625 | (unsigned char **)(rsa)) | ||
626 | #define i2d_RSAPublicKey_bio(bp,rsa) ASN1_i2d_bio(i2d_RSAPublicKey,bp, \ | ||
627 | (unsigned char *)rsa) | ||
628 | |||
629 | #define d2i_DSAPrivateKey_fp(fp,dsa) (DSA *)ASN1_d2i_fp((char *(*)())\ | ||
630 | DSA_new,(char *(*)())d2i_DSAPrivateKey, (fp), \ | ||
631 | (unsigned char **)(dsa)) | ||
632 | #define i2d_DSAPrivateKey_fp(fp,dsa) ASN1_i2d_fp(i2d_DSAPrivateKey,fp, \ | ||
633 | (unsigned char *)dsa) | ||
634 | #define d2i_DSAPrivateKey_bio(bp,dsa) (DSA *)ASN1_d2i_bio((char *(*)())\ | ||
635 | DSA_new,(char *(*)())d2i_DSAPrivateKey, (bp), \ | ||
636 | (unsigned char **)(dsa)) | ||
637 | #define i2d_DSAPrivateKey_bio(bp,dsa) ASN1_i2d_bio(i2d_DSAPrivateKey,bp, \ | ||
638 | (unsigned char *)dsa) | ||
639 | |||
640 | #define X509_ALGOR_dup(xn) (X509_ALGOR *)ASN1_dup((int (*)())i2d_X509_ALGOR,\ | ||
641 | (char *(*)())d2i_X509_ALGOR,(char *)xn) | ||
642 | |||
643 | #define X509_NAME_dup(xn) (X509_NAME *)ASN1_dup((int (*)())i2d_X509_NAME, \ | ||
644 | (char *(*)())d2i_X509_NAME,(char *)xn) | ||
645 | #define X509_NAME_ENTRY_dup(ne) (X509_NAME_ENTRY *)ASN1_dup( \ | ||
646 | (int (*)())i2d_X509_NAME_ENTRY, \ | ||
647 | (char *(*)())d2i_X509_NAME_ENTRY,\ | ||
648 | (char *)ne) | ||
649 | |||
650 | #define X509_digest(data,type,md,len) \ | ||
651 | ASN1_digest((int (*)())i2d_X509,type,(char *)data,md,len) | ||
652 | #define X509_NAME_digest(data,type,md,len) \ | ||
653 | ASN1_digest((int (*)())i2d_X509_NAME,type,(char *)data,md,len) | ||
654 | #ifndef PKCS7_ISSUER_AND_SERIAL_digest | ||
655 | #define PKCS7_ISSUER_AND_SERIAL_digest(data,type,md,len) \ | ||
656 | ASN1_digest((int (*)())i2d_PKCS7_ISSUER_AND_SERIAL,type,\ | ||
657 | (char *)data,md,len) | ||
658 | #endif | ||
659 | #endif | ||
660 | |||
661 | #define X509_EXT_PACK_UNKNOWN 1 | ||
662 | #define X509_EXT_PACK_STRING 2 | ||
663 | |||
664 | #define X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version) | ||
665 | /* #define X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */ | ||
666 | #define X509_get_notBefore(x) ((x)->cert_info->validity->notBefore) | ||
667 | #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) | ||
668 | #define X509_extract_key(x) X509_get_pubkey(x) /*****/ | ||
669 | #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version) | ||
670 | #define X509_REQ_get_subject_name(x) ((x)->req_info->subject) | ||
671 | #define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a) | ||
672 | #define X509_name_cmp(a,b) X509_NAME_cmp((a),(b)) | ||
673 | #define X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm)) | ||
674 | |||
675 | #define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version) | ||
676 | #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate) | ||
677 | #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate) | ||
678 | #define X509_CRL_get_issuer(x) ((x)->crl->issuer) | ||
679 | #define X509_CRL_get_REVOKED(x) ((x)->crl->revoked) | ||
680 | |||
681 | /* This one is only used so that a binary form can output, as in | ||
682 | * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */ | ||
683 | #define X509_get_X509_PUBKEY(x) ((x)->cert_info->key) | ||
684 | |||
685 | |||
686 | const char *X509_verify_cert_error_string(long n); | ||
687 | |||
688 | #ifndef SSLEAY_MACROS | ||
689 | #ifndef NO_EVP | ||
690 | int X509_verify(X509 *a, EVP_PKEY *r); | ||
691 | |||
692 | int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r); | ||
693 | int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r); | ||
694 | int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r); | ||
695 | |||
696 | NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len); | ||
697 | char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x); | ||
698 | EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x); | ||
699 | int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey); | ||
700 | |||
701 | int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki); | ||
702 | |||
703 | int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); | ||
704 | int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md); | ||
705 | int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md); | ||
706 | int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md); | ||
707 | |||
708 | int X509_digest(const X509 *data,const EVP_MD *type, | ||
709 | unsigned char *md, unsigned int *len); | ||
710 | int X509_CRL_digest(const X509_CRL *data,const EVP_MD *type, | ||
711 | unsigned char *md, unsigned int *len); | ||
712 | int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type, | ||
713 | unsigned char *md, unsigned int *len); | ||
714 | int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type, | ||
715 | unsigned char *md, unsigned int *len); | ||
716 | #endif | ||
717 | |||
718 | #ifndef NO_FP_API | ||
719 | X509 *d2i_X509_fp(FILE *fp, X509 **x509); | ||
720 | int i2d_X509_fp(FILE *fp,X509 *x509); | ||
721 | X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL **crl); | ||
722 | int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl); | ||
723 | X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req); | ||
724 | int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req); | ||
725 | #ifndef NO_RSA | ||
726 | RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA **rsa); | ||
727 | int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa); | ||
728 | RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA **rsa); | ||
729 | int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa); | ||
730 | RSA *d2i_RSA_PUBKEY_fp(FILE *fp,RSA **rsa); | ||
731 | int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa); | ||
732 | #endif | ||
733 | #ifndef NO_DSA | ||
734 | DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa); | ||
735 | int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa); | ||
736 | DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa); | ||
737 | int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa); | ||
738 | #endif | ||
739 | X509_SIG *d2i_PKCS8_fp(FILE *fp,X509_SIG **p8); | ||
740 | int i2d_PKCS8_fp(FILE *fp,X509_SIG *p8); | ||
741 | PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, | ||
742 | PKCS8_PRIV_KEY_INFO **p8inf); | ||
743 | int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,PKCS8_PRIV_KEY_INFO *p8inf); | ||
744 | int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key); | ||
745 | int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey); | ||
746 | EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a); | ||
747 | int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey); | ||
748 | EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a); | ||
749 | #endif | ||
750 | |||
751 | #ifndef NO_BIO | ||
752 | X509 *d2i_X509_bio(BIO *bp,X509 **x509); | ||
753 | int i2d_X509_bio(BIO *bp,X509 *x509); | ||
754 | X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl); | ||
755 | int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl); | ||
756 | X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req); | ||
757 | int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req); | ||
758 | #ifndef NO_RSA | ||
759 | RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa); | ||
760 | int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa); | ||
761 | RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa); | ||
762 | int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa); | ||
763 | RSA *d2i_RSA_PUBKEY_bio(BIO *bp,RSA **rsa); | ||
764 | int i2d_RSA_PUBKEY_bio(BIO *bp,RSA *rsa); | ||
765 | #endif | ||
766 | #ifndef NO_DSA | ||
767 | DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa); | ||
768 | int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa); | ||
769 | DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa); | ||
770 | int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa); | ||
771 | #endif | ||
772 | X509_SIG *d2i_PKCS8_bio(BIO *bp,X509_SIG **p8); | ||
773 | int i2d_PKCS8_bio(BIO *bp,X509_SIG *p8); | ||
774 | PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, | ||
775 | PKCS8_PRIV_KEY_INFO **p8inf); | ||
776 | int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,PKCS8_PRIV_KEY_INFO *p8inf); | ||
777 | int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key); | ||
778 | int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey); | ||
779 | EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a); | ||
780 | int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey); | ||
781 | EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a); | ||
782 | #endif | ||
783 | |||
784 | X509 *X509_dup(X509 *x509); | ||
785 | X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa); | ||
786 | X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex); | ||
787 | X509_CRL *X509_CRL_dup(X509_CRL *crl); | ||
788 | X509_REQ *X509_REQ_dup(X509_REQ *req); | ||
789 | X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn); | ||
790 | X509_NAME *X509_NAME_dup(X509_NAME *xn); | ||
791 | X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); | ||
792 | #ifndef NO_RSA | ||
793 | RSA *RSAPublicKey_dup(RSA *rsa); | ||
794 | RSA *RSAPrivateKey_dup(RSA *rsa); | ||
795 | #endif | ||
796 | |||
797 | #endif /* !SSLEAY_MACROS */ | ||
798 | |||
799 | int X509_cmp_time(ASN1_TIME *s, time_t *t); | ||
800 | int X509_cmp_current_time(ASN1_TIME *s); | ||
801 | ASN1_TIME * X509_time_adj(ASN1_TIME *s, long adj, time_t *t); | ||
802 | ASN1_TIME * X509_gmtime_adj(ASN1_TIME *s, long adj); | ||
803 | |||
804 | const char * X509_get_default_cert_area(void ); | ||
805 | const char * X509_get_default_cert_dir(void ); | ||
806 | const char * X509_get_default_cert_file(void ); | ||
807 | const char * X509_get_default_cert_dir_env(void ); | ||
808 | const char * X509_get_default_cert_file_env(void ); | ||
809 | const char * X509_get_default_private_dir(void ); | ||
810 | |||
811 | X509_REQ * X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); | ||
812 | X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey); | ||
813 | void ERR_load_X509_strings(void ); | ||
814 | |||
815 | X509_ALGOR * X509_ALGOR_new(void ); | ||
816 | void X509_ALGOR_free(X509_ALGOR *a); | ||
817 | int i2d_X509_ALGOR(X509_ALGOR *a,unsigned char **pp); | ||
818 | X509_ALGOR * d2i_X509_ALGOR(X509_ALGOR **a,unsigned char **pp, | ||
819 | long length); | ||
820 | |||
821 | X509_VAL * X509_VAL_new(void ); | ||
822 | void X509_VAL_free(X509_VAL *a); | ||
823 | int i2d_X509_VAL(X509_VAL *a,unsigned char **pp); | ||
824 | X509_VAL * d2i_X509_VAL(X509_VAL **a,unsigned char **pp, | ||
825 | long length); | ||
826 | |||
827 | X509_PUBKEY * X509_PUBKEY_new(void ); | ||
828 | void X509_PUBKEY_free(X509_PUBKEY *a); | ||
829 | int i2d_X509_PUBKEY(X509_PUBKEY *a,unsigned char **pp); | ||
830 | X509_PUBKEY * d2i_X509_PUBKEY(X509_PUBKEY **a,unsigned char **pp, | ||
831 | long length); | ||
832 | int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey); | ||
833 | EVP_PKEY * X509_PUBKEY_get(X509_PUBKEY *key); | ||
834 | int X509_get_pubkey_parameters(EVP_PKEY *pkey, | ||
835 | STACK_OF(X509) *chain); | ||
836 | int i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp); | ||
837 | EVP_PKEY * d2i_PUBKEY(EVP_PKEY **a,unsigned char **pp, | ||
838 | long length); | ||
839 | #ifndef NO_RSA | ||
840 | int i2d_RSA_PUBKEY(RSA *a,unsigned char **pp); | ||
841 | RSA * d2i_RSA_PUBKEY(RSA **a,unsigned char **pp, | ||
842 | long length); | ||
843 | #endif | ||
844 | #ifndef NO_DSA | ||
845 | int i2d_DSA_PUBKEY(DSA *a,unsigned char **pp); | ||
846 | DSA * d2i_DSA_PUBKEY(DSA **a,unsigned char **pp, | ||
847 | long length); | ||
848 | #endif | ||
849 | |||
850 | X509_SIG * X509_SIG_new(void ); | ||
851 | void X509_SIG_free(X509_SIG *a); | ||
852 | int i2d_X509_SIG(X509_SIG *a,unsigned char **pp); | ||
853 | X509_SIG * d2i_X509_SIG(X509_SIG **a,unsigned char **pp,long length); | ||
854 | |||
855 | X509_REQ_INFO *X509_REQ_INFO_new(void); | ||
856 | void X509_REQ_INFO_free(X509_REQ_INFO *a); | ||
857 | int i2d_X509_REQ_INFO(X509_REQ_INFO *a,unsigned char **pp); | ||
858 | X509_REQ_INFO *d2i_X509_REQ_INFO(X509_REQ_INFO **a,unsigned char **pp, | ||
859 | long length); | ||
860 | |||
861 | X509_REQ * X509_REQ_new(void); | ||
862 | void X509_REQ_free(X509_REQ *a); | ||
863 | int i2d_X509_REQ(X509_REQ *a,unsigned char **pp); | ||
864 | X509_REQ * d2i_X509_REQ(X509_REQ **a,unsigned char **pp,long length); | ||
865 | |||
866 | X509_ATTRIBUTE *X509_ATTRIBUTE_new(void ); | ||
867 | void X509_ATTRIBUTE_free(X509_ATTRIBUTE *a); | ||
868 | int i2d_X509_ATTRIBUTE(X509_ATTRIBUTE *a,unsigned char **pp); | ||
869 | X509_ATTRIBUTE *d2i_X509_ATTRIBUTE(X509_ATTRIBUTE **a,unsigned char **pp, | ||
870 | long length); | ||
871 | X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value); | ||
872 | |||
873 | |||
874 | X509_EXTENSION *X509_EXTENSION_new(void ); | ||
875 | void X509_EXTENSION_free(X509_EXTENSION *a); | ||
876 | int i2d_X509_EXTENSION(X509_EXTENSION *a,unsigned char **pp); | ||
877 | X509_EXTENSION *d2i_X509_EXTENSION(X509_EXTENSION **a,unsigned char **pp, | ||
878 | long length); | ||
879 | |||
880 | X509_NAME_ENTRY *X509_NAME_ENTRY_new(void); | ||
881 | void X509_NAME_ENTRY_free(X509_NAME_ENTRY *a); | ||
882 | int i2d_X509_NAME_ENTRY(X509_NAME_ENTRY *a,unsigned char **pp); | ||
883 | X509_NAME_ENTRY *d2i_X509_NAME_ENTRY(X509_NAME_ENTRY **a,unsigned char **pp, | ||
884 | long length); | ||
885 | |||
886 | X509_NAME * X509_NAME_new(void); | ||
887 | void X509_NAME_free(X509_NAME *a); | ||
888 | int i2d_X509_NAME(X509_NAME *a,unsigned char **pp); | ||
889 | X509_NAME * d2i_X509_NAME(X509_NAME **a,unsigned char **pp,long length); | ||
890 | int X509_NAME_set(X509_NAME **xn, X509_NAME *name); | ||
891 | |||
892 | |||
893 | X509_CINF * X509_CINF_new(void); | ||
894 | void X509_CINF_free(X509_CINF *a); | ||
895 | int i2d_X509_CINF(X509_CINF *a,unsigned char **pp); | ||
896 | X509_CINF * d2i_X509_CINF(X509_CINF **a,unsigned char **pp,long length); | ||
897 | |||
898 | X509 * X509_new(void); | ||
899 | void X509_free(X509 *a); | ||
900 | int i2d_X509(X509 *a,unsigned char **pp); | ||
901 | X509 * d2i_X509(X509 **a,unsigned char **pp,long length); | ||
902 | int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | ||
903 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); | ||
904 | int X509_set_ex_data(X509 *r, int idx, void *arg); | ||
905 | void *X509_get_ex_data(X509 *r, int idx); | ||
906 | int i2d_X509_AUX(X509 *a,unsigned char **pp); | ||
907 | X509 * d2i_X509_AUX(X509 **a,unsigned char **pp,long length); | ||
908 | |||
909 | X509_CERT_AUX * X509_CERT_AUX_new(void); | ||
910 | void X509_CERT_AUX_free(X509_CERT_AUX *a); | ||
911 | int i2d_X509_CERT_AUX(X509_CERT_AUX *a,unsigned char **pp); | ||
912 | X509_CERT_AUX * d2i_X509_CERT_AUX(X509_CERT_AUX **a,unsigned char **pp, | ||
913 | long length); | ||
914 | int X509_alias_set1(X509 *x, unsigned char *name, int len); | ||
915 | int X509_keyid_set1(X509 *x, unsigned char *id, int len); | ||
916 | unsigned char * X509_alias_get0(X509 *x, int *len); | ||
917 | int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int); | ||
918 | int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj); | ||
919 | int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj); | ||
920 | void X509_trust_clear(X509 *x); | ||
921 | void X509_reject_clear(X509 *x); | ||
922 | |||
923 | X509_REVOKED * X509_REVOKED_new(void); | ||
924 | void X509_REVOKED_free(X509_REVOKED *a); | ||
925 | int i2d_X509_REVOKED(X509_REVOKED *a,unsigned char **pp); | ||
926 | X509_REVOKED * d2i_X509_REVOKED(X509_REVOKED **a,unsigned char **pp,long length); | ||
927 | |||
928 | X509_CRL_INFO *X509_CRL_INFO_new(void); | ||
929 | void X509_CRL_INFO_free(X509_CRL_INFO *a); | ||
930 | int i2d_X509_CRL_INFO(X509_CRL_INFO *a,unsigned char **pp); | ||
931 | X509_CRL_INFO *d2i_X509_CRL_INFO(X509_CRL_INFO **a,unsigned char **pp, | ||
932 | long length); | ||
933 | |||
934 | X509_CRL * X509_CRL_new(void); | ||
935 | void X509_CRL_free(X509_CRL *a); | ||
936 | int i2d_X509_CRL(X509_CRL *a,unsigned char **pp); | ||
937 | X509_CRL * d2i_X509_CRL(X509_CRL **a,unsigned char **pp,long length); | ||
938 | |||
939 | X509_PKEY * X509_PKEY_new(void ); | ||
940 | void X509_PKEY_free(X509_PKEY *a); | ||
941 | int i2d_X509_PKEY(X509_PKEY *a,unsigned char **pp); | ||
942 | X509_PKEY * d2i_X509_PKEY(X509_PKEY **a,unsigned char **pp,long length); | ||
943 | |||
944 | NETSCAPE_SPKI * NETSCAPE_SPKI_new(void ); | ||
945 | void NETSCAPE_SPKI_free(NETSCAPE_SPKI *a); | ||
946 | int i2d_NETSCAPE_SPKI(NETSCAPE_SPKI *a,unsigned char **pp); | ||
947 | NETSCAPE_SPKI * d2i_NETSCAPE_SPKI(NETSCAPE_SPKI **a,unsigned char **pp, | ||
948 | long length); | ||
949 | |||
950 | NETSCAPE_SPKAC *NETSCAPE_SPKAC_new(void ); | ||
951 | void NETSCAPE_SPKAC_free(NETSCAPE_SPKAC *a); | ||
952 | int i2d_NETSCAPE_SPKAC(NETSCAPE_SPKAC *a,unsigned char **pp); | ||
953 | NETSCAPE_SPKAC *d2i_NETSCAPE_SPKAC(NETSCAPE_SPKAC **a,unsigned char **pp, | ||
954 | long length); | ||
955 | |||
956 | |||
957 | int i2d_NETSCAPE_CERT_SEQUENCE(NETSCAPE_CERT_SEQUENCE *a, unsigned char **pp); | ||
958 | NETSCAPE_CERT_SEQUENCE *NETSCAPE_CERT_SEQUENCE_new(void); | ||
959 | NETSCAPE_CERT_SEQUENCE *d2i_NETSCAPE_CERT_SEQUENCE(NETSCAPE_CERT_SEQUENCE **a, unsigned char **pp, long length); | ||
960 | void NETSCAPE_CERT_SEQUENCE_free(NETSCAPE_CERT_SEQUENCE *a); | ||
961 | |||
962 | #ifndef NO_EVP | ||
963 | X509_INFO * X509_INFO_new(void); | ||
964 | void X509_INFO_free(X509_INFO *a); | ||
965 | char * X509_NAME_oneline(X509_NAME *a,char *buf,int size); | ||
966 | |||
967 | int ASN1_verify(int (*i2d)(), X509_ALGOR *algor1, | ||
968 | ASN1_BIT_STRING *signature,char *data,EVP_PKEY *pkey); | ||
969 | |||
970 | int ASN1_digest(int (*i2d)(),const EVP_MD *type,char *data, | ||
971 | unsigned char *md,unsigned int *len); | ||
972 | |||
973 | int ASN1_sign(int (*i2d)(), X509_ALGOR *algor1, X509_ALGOR *algor2, | ||
974 | ASN1_BIT_STRING *signature, | ||
975 | char *data,EVP_PKEY *pkey, const EVP_MD *type); | ||
976 | #endif | ||
977 | |||
978 | int X509_set_version(X509 *x,long version); | ||
979 | int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial); | ||
980 | ASN1_INTEGER * X509_get_serialNumber(X509 *x); | ||
981 | int X509_set_issuer_name(X509 *x, X509_NAME *name); | ||
982 | X509_NAME * X509_get_issuer_name(X509 *a); | ||
983 | int X509_set_subject_name(X509 *x, X509_NAME *name); | ||
984 | X509_NAME * X509_get_subject_name(X509 *a); | ||
985 | int X509_set_notBefore(X509 *x, ASN1_TIME *tm); | ||
986 | int X509_set_notAfter(X509 *x, ASN1_TIME *tm); | ||
987 | int X509_set_pubkey(X509 *x, EVP_PKEY *pkey); | ||
988 | EVP_PKEY * X509_get_pubkey(X509 *x); | ||
989 | int X509_certificate_type(X509 *x,EVP_PKEY *pubkey /* optional */); | ||
990 | |||
991 | int X509_REQ_set_version(X509_REQ *x,long version); | ||
992 | int X509_REQ_set_subject_name(X509_REQ *req,X509_NAME *name); | ||
993 | int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey); | ||
994 | EVP_PKEY * X509_REQ_get_pubkey(X509_REQ *req); | ||
995 | int X509_REQ_extension_nid(int nid); | ||
996 | int * X509_REQ_get_extension_nids(void); | ||
997 | void X509_REQ_set_extension_nids(int *nids); | ||
998 | STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req); | ||
999 | int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, | ||
1000 | int nid); | ||
1001 | int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts); | ||
1002 | int X509_REQ_get_attr_count(const X509_REQ *req); | ||
1003 | int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, | ||
1004 | int lastpos); | ||
1005 | int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, | ||
1006 | int lastpos); | ||
1007 | X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc); | ||
1008 | X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc); | ||
1009 | int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr); | ||
1010 | int X509_REQ_add1_attr_by_OBJ(X509_REQ *req, | ||
1011 | ASN1_OBJECT *obj, int type, | ||
1012 | unsigned char *bytes, int len); | ||
1013 | int X509_REQ_add1_attr_by_NID(X509_REQ *req, | ||
1014 | int nid, int type, | ||
1015 | unsigned char *bytes, int len); | ||
1016 | int X509_REQ_add1_attr_by_txt(X509_REQ *req, | ||
1017 | char *attrname, int type, | ||
1018 | unsigned char *bytes, int len); | ||
1019 | |||
1020 | int X509_check_private_key(X509 *x509,EVP_PKEY *pkey); | ||
1021 | |||
1022 | int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b); | ||
1023 | unsigned long X509_issuer_and_serial_hash(X509 *a); | ||
1024 | |||
1025 | int X509_issuer_name_cmp(const X509 *a, const X509 *b); | ||
1026 | unsigned long X509_issuer_name_hash(X509 *a); | ||
1027 | |||
1028 | int X509_subject_name_cmp(const X509 *a, const X509 *b); | ||
1029 | unsigned long X509_subject_name_hash(X509 *x); | ||
1030 | |||
1031 | int X509_cmp(const X509 *a, const X509 *b); | ||
1032 | int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b); | ||
1033 | unsigned long X509_NAME_hash(X509_NAME *x); | ||
1034 | |||
1035 | int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b); | ||
1036 | #ifndef NO_FP_API | ||
1037 | int X509_print_fp(FILE *bp,X509 *x); | ||
1038 | int X509_CRL_print_fp(FILE *bp,X509_CRL *x); | ||
1039 | int X509_REQ_print_fp(FILE *bp,X509_REQ *req); | ||
1040 | int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags); | ||
1041 | #endif | ||
1042 | |||
1043 | #ifndef NO_BIO | ||
1044 | int X509_NAME_print(BIO *bp, X509_NAME *name, int obase); | ||
1045 | int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags); | ||
1046 | int X509_print(BIO *bp,X509 *x); | ||
1047 | int X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent); | ||
1048 | int X509_CRL_print(BIO *bp,X509_CRL *x); | ||
1049 | int X509_REQ_print(BIO *bp,X509_REQ *req); | ||
1050 | #endif | ||
1051 | |||
1052 | int X509_NAME_entry_count(X509_NAME *name); | ||
1053 | int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, | ||
1054 | char *buf,int len); | ||
1055 | int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, | ||
1056 | char *buf,int len); | ||
1057 | |||
1058 | /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use | ||
1059 | * lastpos, search after that position on. */ | ||
1060 | int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); | ||
1061 | int X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj, | ||
1062 | int lastpos); | ||
1063 | X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc); | ||
1064 | X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); | ||
1065 | int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, | ||
1066 | int loc, int set); | ||
1067 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, | ||
1068 | unsigned char *bytes, int len, int loc, int set); | ||
1069 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, | ||
1070 | unsigned char *bytes, int len, int loc, int set); | ||
1071 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, | ||
1072 | char *field, int type, unsigned char *bytes, int len); | ||
1073 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, | ||
1074 | int type,unsigned char *bytes, int len); | ||
1075 | int X509_NAME_add_entry_by_txt(X509_NAME *name, char *field, int type, | ||
1076 | unsigned char *bytes, int len, int loc, int set); | ||
1077 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, | ||
1078 | ASN1_OBJECT *obj, int type,unsigned char *bytes, | ||
1079 | int len); | ||
1080 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, | ||
1081 | ASN1_OBJECT *obj); | ||
1082 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, | ||
1083 | unsigned char *bytes, int len); | ||
1084 | ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); | ||
1085 | ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); | ||
1086 | |||
1087 | int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x); | ||
1088 | int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, | ||
1089 | int nid, int lastpos); | ||
1090 | int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x, | ||
1091 | ASN1_OBJECT *obj,int lastpos); | ||
1092 | int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x, | ||
1093 | int crit, int lastpos); | ||
1094 | X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc); | ||
1095 | X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc); | ||
1096 | STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x, | ||
1097 | X509_EXTENSION *ex, int loc); | ||
1098 | |||
1099 | int X509_get_ext_count(X509 *x); | ||
1100 | int X509_get_ext_by_NID(X509 *x, int nid, int lastpos); | ||
1101 | int X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos); | ||
1102 | int X509_get_ext_by_critical(X509 *x, int crit, int lastpos); | ||
1103 | X509_EXTENSION *X509_get_ext(X509 *x, int loc); | ||
1104 | X509_EXTENSION *X509_delete_ext(X509 *x, int loc); | ||
1105 | int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc); | ||
1106 | void * X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx); | ||
1107 | |||
1108 | int X509_CRL_get_ext_count(X509_CRL *x); | ||
1109 | int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos); | ||
1110 | int X509_CRL_get_ext_by_OBJ(X509_CRL *x,ASN1_OBJECT *obj,int lastpos); | ||
1111 | int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos); | ||
1112 | X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc); | ||
1113 | X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc); | ||
1114 | int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc); | ||
1115 | void * X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx); | ||
1116 | |||
1117 | int X509_REVOKED_get_ext_count(X509_REVOKED *x); | ||
1118 | int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos); | ||
1119 | int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos); | ||
1120 | int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos); | ||
1121 | X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc); | ||
1122 | X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); | ||
1123 | int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc); | ||
1124 | void * X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx); | ||
1125 | |||
1126 | X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, | ||
1127 | int nid, int crit, ASN1_OCTET_STRING *data); | ||
1128 | X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, | ||
1129 | ASN1_OBJECT *obj,int crit,ASN1_OCTET_STRING *data); | ||
1130 | int X509_EXTENSION_set_object(X509_EXTENSION *ex,ASN1_OBJECT *obj); | ||
1131 | int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit); | ||
1132 | int X509_EXTENSION_set_data(X509_EXTENSION *ex, | ||
1133 | ASN1_OCTET_STRING *data); | ||
1134 | ASN1_OBJECT * X509_EXTENSION_get_object(X509_EXTENSION *ex); | ||
1135 | ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne); | ||
1136 | int X509_EXTENSION_get_critical(X509_EXTENSION *ex); | ||
1137 | |||
1138 | int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x); | ||
1139 | int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, | ||
1140 | int lastpos); | ||
1141 | int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, ASN1_OBJECT *obj, | ||
1142 | int lastpos); | ||
1143 | X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc); | ||
1144 | X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc); | ||
1145 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, | ||
1146 | X509_ATTRIBUTE *attr); | ||
1147 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, | ||
1148 | ASN1_OBJECT *obj, int type, | ||
1149 | unsigned char *bytes, int len); | ||
1150 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, | ||
1151 | int nid, int type, | ||
1152 | unsigned char *bytes, int len); | ||
1153 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, | ||
1154 | char *attrname, int type, | ||
1155 | unsigned char *bytes, int len); | ||
1156 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, | ||
1157 | int atrtype, void *data, int len); | ||
1158 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, | ||
1159 | ASN1_OBJECT *obj, int atrtype, void *data, int len); | ||
1160 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, | ||
1161 | char *atrname, int type, unsigned char *bytes, int len); | ||
1162 | int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, ASN1_OBJECT *obj); | ||
1163 | int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, void *data, int len); | ||
1164 | void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, | ||
1165 | int atrtype, void *data); | ||
1166 | int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr); | ||
1167 | ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr); | ||
1168 | ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx); | ||
1169 | |||
1170 | int X509_verify_cert(X509_STORE_CTX *ctx); | ||
1171 | |||
1172 | /* lookup a cert from a X509 STACK */ | ||
1173 | X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name, | ||
1174 | ASN1_INTEGER *serial); | ||
1175 | X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name); | ||
1176 | |||
1177 | int i2d_PBEPARAM(PBEPARAM *a, unsigned char **pp); | ||
1178 | PBEPARAM *PBEPARAM_new(void); | ||
1179 | PBEPARAM *d2i_PBEPARAM(PBEPARAM **a, unsigned char **pp, long length); | ||
1180 | void PBEPARAM_free(PBEPARAM *a); | ||
1181 | X509_ALGOR *PKCS5_pbe_set(int alg, int iter, unsigned char *salt, int saltlen); | ||
1182 | X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, | ||
1183 | unsigned char *salt, int saltlen); | ||
1184 | |||
1185 | int i2d_PBKDF2PARAM(PBKDF2PARAM *a, unsigned char **pp); | ||
1186 | PBKDF2PARAM *PBKDF2PARAM_new(void); | ||
1187 | PBKDF2PARAM *d2i_PBKDF2PARAM(PBKDF2PARAM **a, unsigned char **pp, long length); | ||
1188 | void PBKDF2PARAM_free(PBKDF2PARAM *a); | ||
1189 | |||
1190 | int i2d_PBE2PARAM(PBE2PARAM *a, unsigned char **pp); | ||
1191 | PBE2PARAM *PBE2PARAM_new(void); | ||
1192 | PBE2PARAM *d2i_PBE2PARAM(PBE2PARAM **a, unsigned char **pp, long length); | ||
1193 | void PBE2PARAM_free(PBE2PARAM *a); | ||
1194 | |||
1195 | /* PKCS#8 utilities */ | ||
1196 | |||
1197 | int i2d_PKCS8_PRIV_KEY_INFO(PKCS8_PRIV_KEY_INFO *a, unsigned char **pp); | ||
1198 | PKCS8_PRIV_KEY_INFO *PKCS8_PRIV_KEY_INFO_new(void); | ||
1199 | PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO(PKCS8_PRIV_KEY_INFO **a, | ||
1200 | unsigned char **pp, long length); | ||
1201 | void PKCS8_PRIV_KEY_INFO_free(PKCS8_PRIV_KEY_INFO *a); | ||
1202 | |||
1203 | EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8); | ||
1204 | PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey); | ||
1205 | PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken); | ||
1206 | PKCS8_PRIV_KEY_INFO *PKCS8_set_broken(PKCS8_PRIV_KEY_INFO *p8, int broken); | ||
1207 | |||
1208 | int X509_check_trust(X509 *x, int id, int flags); | ||
1209 | int X509_TRUST_get_count(void); | ||
1210 | X509_TRUST * X509_TRUST_get0(int idx); | ||
1211 | int X509_TRUST_get_by_id(int id); | ||
1212 | int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int), | ||
1213 | char *name, int arg1, void *arg2); | ||
1214 | void X509_TRUST_cleanup(void); | ||
1215 | int X509_TRUST_get_flags(X509_TRUST *xp); | ||
1216 | char *X509_TRUST_get0_name(X509_TRUST *xp); | ||
1217 | int X509_TRUST_get_trust(X509_TRUST *xp); | ||
1218 | |||
1219 | /* BEGIN ERROR CODES */ | ||
1220 | /* The following lines are auto generated by the script mkerr.pl. Any changes | ||
1221 | * made after this point may be overwritten when the script is next run. | ||
1222 | */ | ||
1223 | |||
1224 | /* Error codes for the X509 functions. */ | ||
1225 | |||
1226 | /* Function codes. */ | ||
1227 | #define X509_F_ADD_CERT_DIR 100 | ||
1228 | #define X509_F_BY_FILE_CTRL 101 | ||
1229 | #define X509_F_DIR_CTRL 102 | ||
1230 | #define X509_F_GET_CERT_BY_SUBJECT 103 | ||
1231 | #define X509_F_NETSCAPE_SPKI_B64_DECODE 129 | ||
1232 | #define X509_F_NETSCAPE_SPKI_B64_ENCODE 130 | ||
1233 | #define X509_F_X509V3_ADD_EXT 104 | ||
1234 | #define X509_F_X509_ADD_ATTR 135 | ||
1235 | #define X509_F_X509_ATTRIBUTE_CREATE_BY_NID 136 | ||
1236 | #define X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ 137 | ||
1237 | #define X509_F_X509_ATTRIBUTE_CREATE_BY_TXT 140 | ||
1238 | #define X509_F_X509_ATTRIBUTE_GET0_DATA 139 | ||
1239 | #define X509_F_X509_ATTRIBUTE_SET1_DATA 138 | ||
1240 | #define X509_F_X509_CHECK_PRIVATE_KEY 128 | ||
1241 | #define X509_F_X509_EXTENSION_CREATE_BY_NID 108 | ||
1242 | #define X509_F_X509_EXTENSION_CREATE_BY_OBJ 109 | ||
1243 | #define X509_F_X509_GET_PUBKEY_PARAMETERS 110 | ||
1244 | #define X509_F_X509_LOAD_CERT_CRL_FILE 132 | ||
1245 | #define X509_F_X509_LOAD_CERT_FILE 111 | ||
1246 | #define X509_F_X509_LOAD_CRL_FILE 112 | ||
1247 | #define X509_F_X509_NAME_ADD_ENTRY 113 | ||
1248 | #define X509_F_X509_NAME_ENTRY_CREATE_BY_NID 114 | ||
1249 | #define X509_F_X509_NAME_ENTRY_CREATE_BY_TXT 131 | ||
1250 | #define X509_F_X509_NAME_ENTRY_SET_OBJECT 115 | ||
1251 | #define X509_F_X509_NAME_ONELINE 116 | ||
1252 | #define X509_F_X509_NAME_PRINT 117 | ||
1253 | #define X509_F_X509_PRINT_FP 118 | ||
1254 | #define X509_F_X509_PUBKEY_GET 119 | ||
1255 | #define X509_F_X509_PUBKEY_SET 120 | ||
1256 | #define X509_F_X509_REQ_PRINT 121 | ||
1257 | #define X509_F_X509_REQ_PRINT_FP 122 | ||
1258 | #define X509_F_X509_REQ_TO_X509 123 | ||
1259 | #define X509_F_X509_STORE_ADD_CERT 124 | ||
1260 | #define X509_F_X509_STORE_ADD_CRL 125 | ||
1261 | #define X509_F_X509_STORE_CTX_PURPOSE_INHERIT 134 | ||
1262 | #define X509_F_X509_TO_X509_REQ 126 | ||
1263 | #define X509_F_X509_TRUST_ADD 133 | ||
1264 | #define X509_F_X509_VERIFY_CERT 127 | ||
1265 | |||
1266 | /* Reason codes. */ | ||
1267 | #define X509_R_BAD_X509_FILETYPE 100 | ||
1268 | #define X509_R_BASE64_DECODE_ERROR 118 | ||
1269 | #define X509_R_CANT_CHECK_DH_KEY 114 | ||
1270 | #define X509_R_CERT_ALREADY_IN_HASH_TABLE 101 | ||
1271 | #define X509_R_ERR_ASN1_LIB 102 | ||
1272 | #define X509_R_INVALID_DIRECTORY 113 | ||
1273 | #define X509_R_INVALID_FIELD_NAME 119 | ||
1274 | #define X509_R_KEY_TYPE_MISMATCH 115 | ||
1275 | #define X509_R_KEY_VALUES_MISMATCH 116 | ||
1276 | #define X509_R_LOADING_CERT_DIR 103 | ||
1277 | #define X509_R_LOADING_DEFAULTS 104 | ||
1278 | #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY 105 | ||
1279 | #define X509_R_SHOULD_RETRY 106 | ||
1280 | #define X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN 107 | ||
1281 | #define X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY 108 | ||
1282 | #define X509_R_UNKNOWN_KEY_TYPE 117 | ||
1283 | #define X509_R_UNKNOWN_NID 109 | ||
1284 | #define X509_R_UNKNOWN_PURPOSE_ID 121 | ||
1285 | #define X509_R_UNKNOWN_TRUST_ID 120 | ||
1286 | #define X509_R_UNSUPPORTED_ALGORITHM 111 | ||
1287 | #define X509_R_WRONG_LOOKUP_TYPE 112 | ||
1288 | #define X509_R_WRONG_TYPE 122 | ||
1289 | |||
1290 | #ifdef __cplusplus | ||
1291 | } | ||
1292 | #endif | ||
1293 | #endif | ||
1294 | |||
diff --git a/src/lib/libcrypto/x509/x509_att.c b/src/lib/libcrypto/x509/x509_att.c deleted file mode 100644 index caafde658f..0000000000 --- a/src/lib/libcrypto/x509/x509_att.c +++ /dev/null | |||
@@ -1,326 +0,0 @@ | |||
1 | /* crypto/x509/x509_att.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <openssl/stack.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/objects.h> | ||
64 | #include <openssl/evp.h> | ||
65 | #include <openssl/x509.h> | ||
66 | #include <openssl/x509v3.h> | ||
67 | |||
68 | int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x) | ||
69 | { | ||
70 | if (!x) return 0; | ||
71 | return(sk_X509_ATTRIBUTE_num(x)); | ||
72 | } | ||
73 | |||
74 | int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, | ||
75 | int lastpos) | ||
76 | { | ||
77 | ASN1_OBJECT *obj; | ||
78 | |||
79 | obj=OBJ_nid2obj(nid); | ||
80 | if (obj == NULL) return(-2); | ||
81 | return(X509at_get_attr_by_OBJ(x,obj,lastpos)); | ||
82 | } | ||
83 | |||
84 | int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, ASN1_OBJECT *obj, | ||
85 | int lastpos) | ||
86 | { | ||
87 | int n; | ||
88 | X509_ATTRIBUTE *ex; | ||
89 | |||
90 | if (sk == NULL) return(-1); | ||
91 | lastpos++; | ||
92 | if (lastpos < 0) | ||
93 | lastpos=0; | ||
94 | n=sk_X509_ATTRIBUTE_num(sk); | ||
95 | for ( ; lastpos < n; lastpos++) | ||
96 | { | ||
97 | ex=sk_X509_ATTRIBUTE_value(sk,lastpos); | ||
98 | if (OBJ_cmp(ex->object,obj) == 0) | ||
99 | return(lastpos); | ||
100 | } | ||
101 | return(-1); | ||
102 | } | ||
103 | |||
104 | X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc) | ||
105 | { | ||
106 | if (x == NULL || sk_X509_ATTRIBUTE_num(x) <= loc || loc < 0) | ||
107 | return NULL; | ||
108 | else | ||
109 | return sk_X509_ATTRIBUTE_value(x,loc); | ||
110 | } | ||
111 | |||
112 | X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc) | ||
113 | { | ||
114 | X509_ATTRIBUTE *ret; | ||
115 | |||
116 | if (x == NULL || sk_X509_ATTRIBUTE_num(x) <= loc || loc < 0) | ||
117 | return(NULL); | ||
118 | ret=sk_X509_ATTRIBUTE_delete(x,loc); | ||
119 | return(ret); | ||
120 | } | ||
121 | |||
122 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, | ||
123 | X509_ATTRIBUTE *attr) | ||
124 | { | ||
125 | X509_ATTRIBUTE *new_attr=NULL; | ||
126 | STACK_OF(X509_ATTRIBUTE) *sk=NULL; | ||
127 | |||
128 | if ((x != NULL) && (*x == NULL)) | ||
129 | { | ||
130 | if ((sk=sk_X509_ATTRIBUTE_new_null()) == NULL) | ||
131 | goto err; | ||
132 | } | ||
133 | else | ||
134 | sk= *x; | ||
135 | |||
136 | if ((new_attr=X509_ATTRIBUTE_dup(attr)) == NULL) | ||
137 | goto err2; | ||
138 | if (!sk_X509_ATTRIBUTE_push(sk,new_attr)) | ||
139 | goto err; | ||
140 | if ((x != NULL) && (*x == NULL)) | ||
141 | *x=sk; | ||
142 | return(sk); | ||
143 | err: | ||
144 | X509err(X509_F_X509_ADD_ATTR,ERR_R_MALLOC_FAILURE); | ||
145 | err2: | ||
146 | if (new_attr != NULL) X509_ATTRIBUTE_free(new_attr); | ||
147 | if (sk != NULL) sk_X509_ATTRIBUTE_free(sk); | ||
148 | return(NULL); | ||
149 | } | ||
150 | |||
151 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, | ||
152 | ASN1_OBJECT *obj, int type, | ||
153 | unsigned char *bytes, int len) | ||
154 | { | ||
155 | X509_ATTRIBUTE *attr; | ||
156 | STACK_OF(X509_ATTRIBUTE) *ret; | ||
157 | attr = X509_ATTRIBUTE_create_by_OBJ(NULL, obj, type, bytes, len); | ||
158 | if(!attr) return 0; | ||
159 | ret = X509at_add1_attr(x, attr); | ||
160 | X509_ATTRIBUTE_free(attr); | ||
161 | return ret; | ||
162 | } | ||
163 | |||
164 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, | ||
165 | int nid, int type, | ||
166 | unsigned char *bytes, int len) | ||
167 | { | ||
168 | X509_ATTRIBUTE *attr; | ||
169 | STACK_OF(X509_ATTRIBUTE) *ret; | ||
170 | attr = X509_ATTRIBUTE_create_by_NID(NULL, nid, type, bytes, len); | ||
171 | if(!attr) return 0; | ||
172 | ret = X509at_add1_attr(x, attr); | ||
173 | X509_ATTRIBUTE_free(attr); | ||
174 | return ret; | ||
175 | } | ||
176 | |||
177 | STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, | ||
178 | char *attrname, int type, | ||
179 | unsigned char *bytes, int len) | ||
180 | { | ||
181 | X509_ATTRIBUTE *attr; | ||
182 | STACK_OF(X509_ATTRIBUTE) *ret; | ||
183 | attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len); | ||
184 | if(!attr) return 0; | ||
185 | ret = X509at_add1_attr(x, attr); | ||
186 | X509_ATTRIBUTE_free(attr); | ||
187 | return ret; | ||
188 | } | ||
189 | |||
190 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, | ||
191 | int atrtype, void *data, int len) | ||
192 | { | ||
193 | ASN1_OBJECT *obj; | ||
194 | X509_ATTRIBUTE *ret; | ||
195 | |||
196 | obj=OBJ_nid2obj(nid); | ||
197 | if (obj == NULL) | ||
198 | { | ||
199 | X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_NID,X509_R_UNKNOWN_NID); | ||
200 | return(NULL); | ||
201 | } | ||
202 | ret=X509_ATTRIBUTE_create_by_OBJ(attr,obj,atrtype,data,len); | ||
203 | if (ret == NULL) ASN1_OBJECT_free(obj); | ||
204 | return(ret); | ||
205 | } | ||
206 | |||
207 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, | ||
208 | ASN1_OBJECT *obj, int atrtype, void *data, int len) | ||
209 | { | ||
210 | X509_ATTRIBUTE *ret; | ||
211 | |||
212 | if ((attr == NULL) || (*attr == NULL)) | ||
213 | { | ||
214 | if ((ret=X509_ATTRIBUTE_new()) == NULL) | ||
215 | { | ||
216 | X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ,ERR_R_MALLOC_FAILURE); | ||
217 | return(NULL); | ||
218 | } | ||
219 | } | ||
220 | else | ||
221 | ret= *attr; | ||
222 | |||
223 | if (!X509_ATTRIBUTE_set1_object(ret,obj)) | ||
224 | goto err; | ||
225 | if (!X509_ATTRIBUTE_set1_data(ret,atrtype,data,len)) | ||
226 | goto err; | ||
227 | |||
228 | if ((attr != NULL) && (*attr == NULL)) *attr=ret; | ||
229 | return(ret); | ||
230 | err: | ||
231 | if ((attr == NULL) || (ret != *attr)) | ||
232 | X509_ATTRIBUTE_free(ret); | ||
233 | return(NULL); | ||
234 | } | ||
235 | |||
236 | X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, | ||
237 | char *atrname, int type, unsigned char *bytes, int len) | ||
238 | { | ||
239 | ASN1_OBJECT *obj; | ||
240 | X509_ATTRIBUTE *nattr; | ||
241 | |||
242 | obj=OBJ_txt2obj(atrname, 0); | ||
243 | if (obj == NULL) | ||
244 | { | ||
245 | X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_TXT, | ||
246 | X509_R_INVALID_FIELD_NAME); | ||
247 | ERR_add_error_data(2, "name=", atrname); | ||
248 | return(NULL); | ||
249 | } | ||
250 | nattr = X509_ATTRIBUTE_create_by_OBJ(attr,obj,type,bytes,len); | ||
251 | ASN1_OBJECT_free(obj); | ||
252 | return nattr; | ||
253 | } | ||
254 | |||
255 | int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, ASN1_OBJECT *obj) | ||
256 | { | ||
257 | if ((attr == NULL) || (obj == NULL)) | ||
258 | return(0); | ||
259 | ASN1_OBJECT_free(attr->object); | ||
260 | attr->object=OBJ_dup(obj); | ||
261 | return(1); | ||
262 | } | ||
263 | |||
264 | int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, void *data, int len) | ||
265 | { | ||
266 | ASN1_TYPE *ttmp; | ||
267 | ASN1_STRING *stmp; | ||
268 | int atype; | ||
269 | if (!attr) return 0; | ||
270 | if(attrtype & MBSTRING_FLAG) { | ||
271 | stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, | ||
272 | OBJ_obj2nid(attr->object)); | ||
273 | if(!stmp) { | ||
274 | X509err(X509_F_X509_ATTRIBUTE_SET1_DATA, ERR_R_ASN1_LIB); | ||
275 | return 0; | ||
276 | } | ||
277 | atype = stmp->type; | ||
278 | } else { | ||
279 | if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err; | ||
280 | if(!ASN1_STRING_set(stmp, data, len)) goto err; | ||
281 | atype = attrtype; | ||
282 | } | ||
283 | if(!(attr->value.set = sk_ASN1_TYPE_new_null())) goto err; | ||
284 | if(!(ttmp = ASN1_TYPE_new())) goto err; | ||
285 | if(!sk_ASN1_TYPE_push(attr->value.set, ttmp)) goto err; | ||
286 | attr->set = 1; | ||
287 | ASN1_TYPE_set(ttmp, atype, stmp); | ||
288 | return 1; | ||
289 | err: | ||
290 | X509err(X509_F_X509_ATTRIBUTE_SET1_DATA, ERR_R_MALLOC_FAILURE); | ||
291 | return 0; | ||
292 | } | ||
293 | |||
294 | int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr) | ||
295 | { | ||
296 | if(attr->set) return sk_ASN1_TYPE_num(attr->value.set); | ||
297 | if(attr->value.single) return 1; | ||
298 | return 0; | ||
299 | } | ||
300 | |||
301 | ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr) | ||
302 | { | ||
303 | if (attr == NULL) return(NULL); | ||
304 | return(attr->object); | ||
305 | } | ||
306 | |||
307 | void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, | ||
308 | int atrtype, void *data) | ||
309 | { | ||
310 | ASN1_TYPE *ttmp; | ||
311 | ttmp = X509_ATTRIBUTE_get0_type(attr, idx); | ||
312 | if(!ttmp) return NULL; | ||
313 | if(atrtype != ASN1_TYPE_get(ttmp)){ | ||
314 | X509err(X509_F_X509_ATTRIBUTE_GET0_DATA, X509_R_WRONG_TYPE); | ||
315 | return NULL; | ||
316 | } | ||
317 | return ttmp->value.ptr; | ||
318 | } | ||
319 | |||
320 | ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx) | ||
321 | { | ||
322 | if (attr == NULL) return(NULL); | ||
323 | if(idx >= X509_ATTRIBUTE_count(attr)) return NULL; | ||
324 | if(attr->set) return sk_ASN1_TYPE_value(attr->value.set, idx); | ||
325 | else return attr->value.single; | ||
326 | } | ||
diff --git a/src/lib/libcrypto/x509/x509_cmp.c b/src/lib/libcrypto/x509/x509_cmp.c deleted file mode 100644 index 3f9f9b3d47..0000000000 --- a/src/lib/libcrypto/x509/x509_cmp.c +++ /dev/null | |||
@@ -1,308 +0,0 @@ | |||
1 | /* crypto/x509/x509_cmp.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/x509.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b) | ||
67 | { | ||
68 | int i; | ||
69 | X509_CINF *ai,*bi; | ||
70 | |||
71 | ai=a->cert_info; | ||
72 | bi=b->cert_info; | ||
73 | i=M_ASN1_INTEGER_cmp(ai->serialNumber,bi->serialNumber); | ||
74 | if (i) return(i); | ||
75 | return(X509_NAME_cmp(ai->issuer,bi->issuer)); | ||
76 | } | ||
77 | |||
78 | #ifndef NO_MD5 | ||
79 | unsigned long X509_issuer_and_serial_hash(X509 *a) | ||
80 | { | ||
81 | unsigned long ret=0; | ||
82 | MD5_CTX ctx; | ||
83 | unsigned char md[16]; | ||
84 | char str[256]; | ||
85 | |||
86 | X509_NAME_oneline(a->cert_info->issuer,str,256); | ||
87 | ret=strlen(str); | ||
88 | MD5_Init(&ctx); | ||
89 | MD5_Update(&ctx,(unsigned char *)str,ret); | ||
90 | MD5_Update(&ctx,(unsigned char *)a->cert_info->serialNumber->data, | ||
91 | (unsigned long)a->cert_info->serialNumber->length); | ||
92 | MD5_Final(&(md[0]),&ctx); | ||
93 | ret=( ((unsigned long)md[0] )|((unsigned long)md[1]<<8L)| | ||
94 | ((unsigned long)md[2]<<16L)|((unsigned long)md[3]<<24L) | ||
95 | )&0xffffffffL; | ||
96 | return(ret); | ||
97 | } | ||
98 | #endif | ||
99 | |||
100 | int X509_issuer_name_cmp(const X509 *a, const X509 *b) | ||
101 | { | ||
102 | return(X509_NAME_cmp(a->cert_info->issuer,b->cert_info->issuer)); | ||
103 | } | ||
104 | |||
105 | int X509_subject_name_cmp(const X509 *a, const X509 *b) | ||
106 | { | ||
107 | return(X509_NAME_cmp(a->cert_info->subject,b->cert_info->subject)); | ||
108 | } | ||
109 | |||
110 | int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b) | ||
111 | { | ||
112 | return(X509_NAME_cmp(a->crl->issuer,b->crl->issuer)); | ||
113 | } | ||
114 | |||
115 | X509_NAME *X509_get_issuer_name(X509 *a) | ||
116 | { | ||
117 | return(a->cert_info->issuer); | ||
118 | } | ||
119 | |||
120 | unsigned long X509_issuer_name_hash(X509 *x) | ||
121 | { | ||
122 | return(X509_NAME_hash(x->cert_info->issuer)); | ||
123 | } | ||
124 | |||
125 | X509_NAME *X509_get_subject_name(X509 *a) | ||
126 | { | ||
127 | return(a->cert_info->subject); | ||
128 | } | ||
129 | |||
130 | ASN1_INTEGER *X509_get_serialNumber(X509 *a) | ||
131 | { | ||
132 | return(a->cert_info->serialNumber); | ||
133 | } | ||
134 | |||
135 | unsigned long X509_subject_name_hash(X509 *x) | ||
136 | { | ||
137 | return(X509_NAME_hash(x->cert_info->subject)); | ||
138 | } | ||
139 | |||
140 | #ifndef NO_SHA | ||
141 | /* Compare two certificates: they must be identical for | ||
142 | * this to work. NB: Although "cmp" operations are generally | ||
143 | * prototyped to take "const" arguments (eg. for use in | ||
144 | * STACKs), the way X509 handling is - these operations may | ||
145 | * involve ensuring the hashes are up-to-date and ensuring | ||
146 | * certain cert information is cached. So this is the point | ||
147 | * where the "depth-first" constification tree has to halt | ||
148 | * with an evil cast. | ||
149 | */ | ||
150 | int X509_cmp(const X509 *a, const X509 *b) | ||
151 | { | ||
152 | /* ensure hash is valid */ | ||
153 | X509_check_purpose((X509 *)a, -1, 0); | ||
154 | X509_check_purpose((X509 *)b, -1, 0); | ||
155 | |||
156 | return memcmp(a->sha1_hash, b->sha1_hash, SHA_DIGEST_LENGTH); | ||
157 | } | ||
158 | #endif | ||
159 | |||
160 | int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) | ||
161 | { | ||
162 | int i,j; | ||
163 | X509_NAME_ENTRY *na,*nb; | ||
164 | |||
165 | if (sk_X509_NAME_ENTRY_num(a->entries) | ||
166 | != sk_X509_NAME_ENTRY_num(b->entries)) | ||
167 | return sk_X509_NAME_ENTRY_num(a->entries) | ||
168 | -sk_X509_NAME_ENTRY_num(b->entries); | ||
169 | for (i=sk_X509_NAME_ENTRY_num(a->entries)-1; i>=0; i--) | ||
170 | { | ||
171 | na=sk_X509_NAME_ENTRY_value(a->entries,i); | ||
172 | nb=sk_X509_NAME_ENTRY_value(b->entries,i); | ||
173 | j=na->value->length-nb->value->length; | ||
174 | if (j) return(j); | ||
175 | j=memcmp(na->value->data,nb->value->data, | ||
176 | na->value->length); | ||
177 | if (j) return(j); | ||
178 | j=na->set-nb->set; | ||
179 | if (j) return(j); | ||
180 | } | ||
181 | |||
182 | /* We will check the object types after checking the values | ||
183 | * since the values will more often be different than the object | ||
184 | * types. */ | ||
185 | for (i=sk_X509_NAME_ENTRY_num(a->entries)-1; i>=0; i--) | ||
186 | { | ||
187 | na=sk_X509_NAME_ENTRY_value(a->entries,i); | ||
188 | nb=sk_X509_NAME_ENTRY_value(b->entries,i); | ||
189 | j=OBJ_cmp(na->object,nb->object); | ||
190 | if (j) return(j); | ||
191 | } | ||
192 | return(0); | ||
193 | } | ||
194 | |||
195 | #ifndef NO_MD5 | ||
196 | /* I now DER encode the name and hash it. Since I cache the DER encoding, | ||
197 | * this is reasonably efficient. */ | ||
198 | unsigned long X509_NAME_hash(X509_NAME *x) | ||
199 | { | ||
200 | unsigned long ret=0; | ||
201 | unsigned char md[16]; | ||
202 | |||
203 | /* Ensure cached version is up to date */ | ||
204 | i2d_X509_NAME(x,NULL); | ||
205 | /* Use cached encoding directly rather than copying: this should | ||
206 | * keep libsafe happy. | ||
207 | */ | ||
208 | MD5((unsigned char *)x->bytes->data,x->bytes->length,&(md[0])); | ||
209 | |||
210 | ret=( ((unsigned long)md[0] )|((unsigned long)md[1]<<8L)| | ||
211 | ((unsigned long)md[2]<<16L)|((unsigned long)md[3]<<24L) | ||
212 | )&0xffffffffL; | ||
213 | return(ret); | ||
214 | } | ||
215 | #endif | ||
216 | |||
217 | /* Search a stack of X509 for a match */ | ||
218 | X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk, X509_NAME *name, | ||
219 | ASN1_INTEGER *serial) | ||
220 | { | ||
221 | int i; | ||
222 | X509_CINF cinf; | ||
223 | X509 x,*x509=NULL; | ||
224 | |||
225 | if(!sk) return NULL; | ||
226 | |||
227 | x.cert_info= &cinf; | ||
228 | cinf.serialNumber=serial; | ||
229 | cinf.issuer=name; | ||
230 | |||
231 | for (i=0; i<sk_X509_num(sk); i++) | ||
232 | { | ||
233 | x509=sk_X509_value(sk,i); | ||
234 | if (X509_issuer_and_serial_cmp(x509,&x) == 0) | ||
235 | return(x509); | ||
236 | } | ||
237 | return(NULL); | ||
238 | } | ||
239 | |||
240 | X509 *X509_find_by_subject(STACK_OF(X509) *sk, X509_NAME *name) | ||
241 | { | ||
242 | X509 *x509; | ||
243 | int i; | ||
244 | |||
245 | for (i=0; i<sk_X509_num(sk); i++) | ||
246 | { | ||
247 | x509=sk_X509_value(sk,i); | ||
248 | if (X509_NAME_cmp(X509_get_subject_name(x509),name) == 0) | ||
249 | return(x509); | ||
250 | } | ||
251 | return(NULL); | ||
252 | } | ||
253 | |||
254 | EVP_PKEY *X509_get_pubkey(X509 *x) | ||
255 | { | ||
256 | if ((x == NULL) || (x->cert_info == NULL)) | ||
257 | return(NULL); | ||
258 | return(X509_PUBKEY_get(x->cert_info->key)); | ||
259 | } | ||
260 | |||
261 | int X509_check_private_key(X509 *x, EVP_PKEY *k) | ||
262 | { | ||
263 | EVP_PKEY *xk=NULL; | ||
264 | int ok=0; | ||
265 | |||
266 | xk=X509_get_pubkey(x); | ||
267 | if (xk->type != k->type) | ||
268 | { | ||
269 | X509err(X509_F_X509_CHECK_PRIVATE_KEY,X509_R_KEY_TYPE_MISMATCH); | ||
270 | goto err; | ||
271 | } | ||
272 | switch (k->type) | ||
273 | { | ||
274 | #ifndef NO_RSA | ||
275 | case EVP_PKEY_RSA: | ||
276 | if (BN_cmp(xk->pkey.rsa->n,k->pkey.rsa->n) != 0 | ||
277 | || BN_cmp(xk->pkey.rsa->e,k->pkey.rsa->e) != 0) | ||
278 | { | ||
279 | X509err(X509_F_X509_CHECK_PRIVATE_KEY,X509_R_KEY_VALUES_MISMATCH); | ||
280 | goto err; | ||
281 | } | ||
282 | break; | ||
283 | #endif | ||
284 | #ifndef NO_DSA | ||
285 | case EVP_PKEY_DSA: | ||
286 | if (BN_cmp(xk->pkey.dsa->pub_key,k->pkey.dsa->pub_key) != 0) | ||
287 | { | ||
288 | X509err(X509_F_X509_CHECK_PRIVATE_KEY,X509_R_KEY_VALUES_MISMATCH); | ||
289 | goto err; | ||
290 | } | ||
291 | break; | ||
292 | #endif | ||
293 | #ifndef NO_DH | ||
294 | case EVP_PKEY_DH: | ||
295 | /* No idea */ | ||
296 | X509err(X509_F_X509_CHECK_PRIVATE_KEY,X509_R_CANT_CHECK_DH_KEY); | ||
297 | goto err; | ||
298 | #endif | ||
299 | default: | ||
300 | X509err(X509_F_X509_CHECK_PRIVATE_KEY,X509_R_UNKNOWN_KEY_TYPE); | ||
301 | goto err; | ||
302 | } | ||
303 | |||
304 | ok=1; | ||
305 | err: | ||
306 | EVP_PKEY_free(xk); | ||
307 | return(ok); | ||
308 | } | ||
diff --git a/src/lib/libcrypto/x509/x509_d2.c b/src/lib/libcrypto/x509/x509_d2.c deleted file mode 100644 index 753d53eb43..0000000000 --- a/src/lib/libcrypto/x509/x509_d2.c +++ /dev/null | |||
@@ -1,107 +0,0 @@ | |||
1 | /* crypto/x509/x509_d2.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/crypto.h> | ||
62 | #include <openssl/x509.h> | ||
63 | |||
64 | #ifndef NO_STDIO | ||
65 | int X509_STORE_set_default_paths(X509_STORE *ctx) | ||
66 | { | ||
67 | X509_LOOKUP *lookup; | ||
68 | |||
69 | lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); | ||
70 | if (lookup == NULL) return(0); | ||
71 | X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT); | ||
72 | |||
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 */ | ||
78 | ERR_clear_error(); | ||
79 | |||
80 | return(1); | ||
81 | } | ||
82 | |||
83 | int X509_STORE_load_locations(X509_STORE *ctx, const char *file, | ||
84 | const char *path) | ||
85 | { | ||
86 | X509_LOOKUP *lookup; | ||
87 | |||
88 | if (file != NULL) | ||
89 | { | ||
90 | lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_file()); | ||
91 | if (lookup == NULL) return(0); | ||
92 | if (X509_LOOKUP_load_file(lookup,file,X509_FILETYPE_PEM) != 1) | ||
93 | return(0); | ||
94 | } | ||
95 | if (path != NULL) | ||
96 | { | ||
97 | lookup=X509_STORE_add_lookup(ctx,X509_LOOKUP_hash_dir()); | ||
98 | if (lookup == NULL) return(0); | ||
99 | if (X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_PEM) != 1) | ||
100 | return(0); | ||
101 | } | ||
102 | if ((path == NULL) && (file == NULL)) | ||
103 | return(0); | ||
104 | return(1); | ||
105 | } | ||
106 | |||
107 | #endif | ||
diff --git a/src/lib/libcrypto/x509/x509_def.c b/src/lib/libcrypto/x509/x509_def.c deleted file mode 100644 index e0ac151a76..0000000000 --- a/src/lib/libcrypto/x509/x509_def.c +++ /dev/null | |||
@@ -1,81 +0,0 @@ | |||
1 | /* crypto/x509/x509_def.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/crypto.h> | ||
62 | #include <openssl/x509.h> | ||
63 | |||
64 | const char *X509_get_default_private_dir(void) | ||
65 | { return(X509_PRIVATE_DIR); } | ||
66 | |||
67 | const char *X509_get_default_cert_area(void) | ||
68 | { return(X509_CERT_AREA); } | ||
69 | |||
70 | const char *X509_get_default_cert_dir(void) | ||
71 | { return(X509_CERT_DIR); } | ||
72 | |||
73 | const char *X509_get_default_cert_file(void) | ||
74 | { return(X509_CERT_FILE); } | ||
75 | |||
76 | const char *X509_get_default_cert_dir_env(void) | ||
77 | { return(X509_CERT_DIR_EVP); } | ||
78 | |||
79 | const char *X509_get_default_cert_file_env(void) | ||
80 | { return(X509_CERT_FILE_EVP); } | ||
81 | |||
diff --git a/src/lib/libcrypto/x509/x509_err.c b/src/lib/libcrypto/x509/x509_err.c deleted file mode 100644 index 848add56e9..0000000000 --- a/src/lib/libcrypto/x509/x509_err.c +++ /dev/null | |||
@@ -1,152 +0,0 @@ | |||
1 | /* crypto/x509/x509_err.c */ | ||
2 | /* ==================================================================== | ||
3 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * | ||
9 | * 1. Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in | ||
14 | * the documentation and/or other materials provided with the | ||
15 | * distribution. | ||
16 | * | ||
17 | * 3. All advertising materials mentioning features or use of this | ||
18 | * software must display the following acknowledgment: | ||
19 | * "This product includes software developed by the OpenSSL Project | ||
20 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
21 | * | ||
22 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
23 | * endorse or promote products derived from this software without | ||
24 | * prior written permission. For written permission, please contact | ||
25 | * openssl-core@OpenSSL.org. | ||
26 | * | ||
27 | * 5. Products derived from this software may not be called "OpenSSL" | ||
28 | * nor may "OpenSSL" appear in their names without prior written | ||
29 | * permission of the OpenSSL Project. | ||
30 | * | ||
31 | * 6. Redistributions of any form whatsoever must retain the following | ||
32 | * acknowledgment: | ||
33 | * "This product includes software developed by the OpenSSL Project | ||
34 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
35 | * | ||
36 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
37 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
38 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
39 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
40 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
41 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
42 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
43 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
44 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
45 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
46 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
47 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
48 | * ==================================================================== | ||
49 | * | ||
50 | * This product includes cryptographic software written by Eric Young | ||
51 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
52 | * Hudson (tjh@cryptsoft.com). | ||
53 | * | ||
54 | */ | ||
55 | |||
56 | /* NOTE: this file was auto generated by the mkerr.pl script: any changes | ||
57 | * made to it will be overwritten when the script next updates this file, | ||
58 | * only reason strings will be preserved. | ||
59 | */ | ||
60 | |||
61 | #include <stdio.h> | ||
62 | #include <openssl/err.h> | ||
63 | #include <openssl/x509.h> | ||
64 | |||
65 | /* BEGIN ERROR CODES */ | ||
66 | #ifndef NO_ERR | ||
67 | static ERR_STRING_DATA X509_str_functs[]= | ||
68 | { | ||
69 | {ERR_PACK(0,X509_F_ADD_CERT_DIR,0), "ADD_CERT_DIR"}, | ||
70 | {ERR_PACK(0,X509_F_BY_FILE_CTRL,0), "BY_FILE_CTRL"}, | ||
71 | {ERR_PACK(0,X509_F_DIR_CTRL,0), "DIR_CTRL"}, | ||
72 | {ERR_PACK(0,X509_F_GET_CERT_BY_SUBJECT,0), "GET_CERT_BY_SUBJECT"}, | ||
73 | {ERR_PACK(0,X509_F_NETSCAPE_SPKI_B64_DECODE,0), "NETSCAPE_SPKI_b64_decode"}, | ||
74 | {ERR_PACK(0,X509_F_NETSCAPE_SPKI_B64_ENCODE,0), "NETSCAPE_SPKI_b64_encode"}, | ||
75 | {ERR_PACK(0,X509_F_X509V3_ADD_EXT,0), "X509v3_add_ext"}, | ||
76 | {ERR_PACK(0,X509_F_X509_ADD_ATTR,0), "X509_ADD_ATTR"}, | ||
77 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_NID,0), "X509_ATTRIBUTE_create_by_NID"}, | ||
78 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ,0), "X509_ATTRIBUTE_create_by_OBJ"}, | ||
79 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_TXT,0), "X509_ATTRIBUTE_create_by_txt"}, | ||
80 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_GET0_DATA,0), "X509_ATTRIBUTE_get0_data"}, | ||
81 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_SET1_DATA,0), "X509_ATTRIBUTE_set1_data"}, | ||
82 | {ERR_PACK(0,X509_F_X509_CHECK_PRIVATE_KEY,0), "X509_check_private_key"}, | ||
83 | {ERR_PACK(0,X509_F_X509_EXTENSION_CREATE_BY_NID,0), "X509_EXTENSION_create_by_NID"}, | ||
84 | {ERR_PACK(0,X509_F_X509_EXTENSION_CREATE_BY_OBJ,0), "X509_EXTENSION_create_by_OBJ"}, | ||
85 | {ERR_PACK(0,X509_F_X509_GET_PUBKEY_PARAMETERS,0), "X509_get_pubkey_parameters"}, | ||
86 | {ERR_PACK(0,X509_F_X509_LOAD_CERT_CRL_FILE,0), "X509_load_cert_crl_file"}, | ||
87 | {ERR_PACK(0,X509_F_X509_LOAD_CERT_FILE,0), "X509_load_cert_file"}, | ||
88 | {ERR_PACK(0,X509_F_X509_LOAD_CRL_FILE,0), "X509_load_crl_file"}, | ||
89 | {ERR_PACK(0,X509_F_X509_NAME_ADD_ENTRY,0), "X509_NAME_add_entry"}, | ||
90 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_CREATE_BY_NID,0), "X509_NAME_ENTRY_create_by_NID"}, | ||
91 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_CREATE_BY_TXT,0), "X509_NAME_ENTRY_create_by_txt"}, | ||
92 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_SET_OBJECT,0), "X509_NAME_ENTRY_set_object"}, | ||
93 | {ERR_PACK(0,X509_F_X509_NAME_ONELINE,0), "X509_NAME_oneline"}, | ||
94 | {ERR_PACK(0,X509_F_X509_NAME_PRINT,0), "X509_NAME_print"}, | ||
95 | {ERR_PACK(0,X509_F_X509_PRINT_FP,0), "X509_print_fp"}, | ||
96 | {ERR_PACK(0,X509_F_X509_PUBKEY_GET,0), "X509_PUBKEY_get"}, | ||
97 | {ERR_PACK(0,X509_F_X509_PUBKEY_SET,0), "X509_PUBKEY_set"}, | ||
98 | {ERR_PACK(0,X509_F_X509_REQ_PRINT,0), "X509_REQ_print"}, | ||
99 | {ERR_PACK(0,X509_F_X509_REQ_PRINT_FP,0), "X509_REQ_print_fp"}, | ||
100 | {ERR_PACK(0,X509_F_X509_REQ_TO_X509,0), "X509_REQ_to_X509"}, | ||
101 | {ERR_PACK(0,X509_F_X509_STORE_ADD_CERT,0), "X509_STORE_add_cert"}, | ||
102 | {ERR_PACK(0,X509_F_X509_STORE_ADD_CRL,0), "X509_STORE_add_crl"}, | ||
103 | {ERR_PACK(0,X509_F_X509_STORE_CTX_PURPOSE_INHERIT,0), "X509_STORE_CTX_purpose_inherit"}, | ||
104 | {ERR_PACK(0,X509_F_X509_TO_X509_REQ,0), "X509_to_X509_REQ"}, | ||
105 | {ERR_PACK(0,X509_F_X509_TRUST_ADD,0), "X509_TRUST_add"}, | ||
106 | {ERR_PACK(0,X509_F_X509_VERIFY_CERT,0), "X509_verify_cert"}, | ||
107 | {0,NULL} | ||
108 | }; | ||
109 | |||
110 | static ERR_STRING_DATA X509_str_reasons[]= | ||
111 | { | ||
112 | {X509_R_BAD_X509_FILETYPE ,"bad x509 filetype"}, | ||
113 | {X509_R_BASE64_DECODE_ERROR ,"base64 decode error"}, | ||
114 | {X509_R_CANT_CHECK_DH_KEY ,"cant check dh key"}, | ||
115 | {X509_R_CERT_ALREADY_IN_HASH_TABLE ,"cert already in hash table"}, | ||
116 | {X509_R_ERR_ASN1_LIB ,"err asn1 lib"}, | ||
117 | {X509_R_INVALID_DIRECTORY ,"invalid directory"}, | ||
118 | {X509_R_INVALID_FIELD_NAME ,"invalid field name"}, | ||
119 | {X509_R_KEY_TYPE_MISMATCH ,"key type mismatch"}, | ||
120 | {X509_R_KEY_VALUES_MISMATCH ,"key values mismatch"}, | ||
121 | {X509_R_LOADING_CERT_DIR ,"loading cert dir"}, | ||
122 | {X509_R_LOADING_DEFAULTS ,"loading defaults"}, | ||
123 | {X509_R_NO_CERT_SET_FOR_US_TO_VERIFY ,"no cert set for us to verify"}, | ||
124 | {X509_R_SHOULD_RETRY ,"should retry"}, | ||
125 | {X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN,"unable to find parameters in chain"}, | ||
126 | {X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY ,"unable to get certs public key"}, | ||
127 | {X509_R_UNKNOWN_KEY_TYPE ,"unknown key type"}, | ||
128 | {X509_R_UNKNOWN_NID ,"unknown nid"}, | ||
129 | {X509_R_UNKNOWN_PURPOSE_ID ,"unknown purpose id"}, | ||
130 | {X509_R_UNKNOWN_TRUST_ID ,"unknown trust id"}, | ||
131 | {X509_R_UNSUPPORTED_ALGORITHM ,"unsupported algorithm"}, | ||
132 | {X509_R_WRONG_LOOKUP_TYPE ,"wrong lookup type"}, | ||
133 | {X509_R_WRONG_TYPE ,"wrong type"}, | ||
134 | {0,NULL} | ||
135 | }; | ||
136 | |||
137 | #endif | ||
138 | |||
139 | void ERR_load_X509_strings(void) | ||
140 | { | ||
141 | static int init=1; | ||
142 | |||
143 | if (init) | ||
144 | { | ||
145 | init=0; | ||
146 | #ifndef NO_ERR | ||
147 | ERR_load_strings(ERR_LIB_X509,X509_str_functs); | ||
148 | ERR_load_strings(ERR_LIB_X509,X509_str_reasons); | ||
149 | #endif | ||
150 | |||
151 | } | ||
152 | } | ||
diff --git a/src/lib/libcrypto/x509/x509_ext.c b/src/lib/libcrypto/x509/x509_ext.c deleted file mode 100644 index 2955989807..0000000000 --- a/src/lib/libcrypto/x509/x509_ext.c +++ /dev/null | |||
@@ -1,191 +0,0 @@ | |||
1 | /* crypto/x509/x509_ext.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <openssl/stack.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/objects.h> | ||
64 | #include <openssl/evp.h> | ||
65 | #include <openssl/x509.h> | ||
66 | #include <openssl/x509v3.h> | ||
67 | |||
68 | |||
69 | int X509_CRL_get_ext_count(X509_CRL *x) | ||
70 | { | ||
71 | return(X509v3_get_ext_count(x->crl->extensions)); | ||
72 | } | ||
73 | |||
74 | int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos) | ||
75 | { | ||
76 | return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos)); | ||
77 | } | ||
78 | |||
79 | int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos) | ||
80 | { | ||
81 | return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos)); | ||
82 | } | ||
83 | |||
84 | int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos) | ||
85 | { | ||
86 | return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos)); | ||
87 | } | ||
88 | |||
89 | X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc) | ||
90 | { | ||
91 | return(X509v3_get_ext(x->crl->extensions,loc)); | ||
92 | } | ||
93 | |||
94 | X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc) | ||
95 | { | ||
96 | return(X509v3_delete_ext(x->crl->extensions,loc)); | ||
97 | } | ||
98 | |||
99 | void *X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx) | ||
100 | { | ||
101 | return X509V3_get_d2i(x->crl->extensions, nid, crit, idx); | ||
102 | } | ||
103 | |||
104 | int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc) | ||
105 | { | ||
106 | return(X509v3_add_ext(&(x->crl->extensions),ex,loc) != NULL); | ||
107 | } | ||
108 | |||
109 | int X509_get_ext_count(X509 *x) | ||
110 | { | ||
111 | return(X509v3_get_ext_count(x->cert_info->extensions)); | ||
112 | } | ||
113 | |||
114 | int X509_get_ext_by_NID(X509 *x, int nid, int lastpos) | ||
115 | { | ||
116 | return(X509v3_get_ext_by_NID(x->cert_info->extensions,nid,lastpos)); | ||
117 | } | ||
118 | |||
119 | int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos) | ||
120 | { | ||
121 | return(X509v3_get_ext_by_OBJ(x->cert_info->extensions,obj,lastpos)); | ||
122 | } | ||
123 | |||
124 | int X509_get_ext_by_critical(X509 *x, int crit, int lastpos) | ||
125 | { | ||
126 | return(X509v3_get_ext_by_critical(x->cert_info->extensions,crit,lastpos)); | ||
127 | } | ||
128 | |||
129 | X509_EXTENSION *X509_get_ext(X509 *x, int loc) | ||
130 | { | ||
131 | return(X509v3_get_ext(x->cert_info->extensions,loc)); | ||
132 | } | ||
133 | |||
134 | X509_EXTENSION *X509_delete_ext(X509 *x, int loc) | ||
135 | { | ||
136 | return(X509v3_delete_ext(x->cert_info->extensions,loc)); | ||
137 | } | ||
138 | |||
139 | int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc) | ||
140 | { | ||
141 | return(X509v3_add_ext(&(x->cert_info->extensions),ex,loc) != NULL); | ||
142 | } | ||
143 | |||
144 | void *X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx) | ||
145 | { | ||
146 | return X509V3_get_d2i(x->cert_info->extensions, nid, crit, idx); | ||
147 | } | ||
148 | |||
149 | int X509_REVOKED_get_ext_count(X509_REVOKED *x) | ||
150 | { | ||
151 | return(X509v3_get_ext_count(x->extensions)); | ||
152 | } | ||
153 | |||
154 | int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos) | ||
155 | { | ||
156 | return(X509v3_get_ext_by_NID(x->extensions,nid,lastpos)); | ||
157 | } | ||
158 | |||
159 | int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x, ASN1_OBJECT *obj, | ||
160 | int lastpos) | ||
161 | { | ||
162 | return(X509v3_get_ext_by_OBJ(x->extensions,obj,lastpos)); | ||
163 | } | ||
164 | |||
165 | int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos) | ||
166 | { | ||
167 | return(X509v3_get_ext_by_critical(x->extensions,crit,lastpos)); | ||
168 | } | ||
169 | |||
170 | X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc) | ||
171 | { | ||
172 | return(X509v3_get_ext(x->extensions,loc)); | ||
173 | } | ||
174 | |||
175 | X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc) | ||
176 | { | ||
177 | return(X509v3_delete_ext(x->extensions,loc)); | ||
178 | } | ||
179 | |||
180 | int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc) | ||
181 | { | ||
182 | return(X509v3_add_ext(&(x->extensions),ex,loc) != NULL); | ||
183 | } | ||
184 | |||
185 | void *X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx) | ||
186 | { | ||
187 | return X509V3_get_d2i(x->extensions, nid, crit, idx); | ||
188 | } | ||
189 | |||
190 | IMPLEMENT_STACK_OF(X509_EXTENSION) | ||
191 | IMPLEMENT_ASN1_SET_OF(X509_EXTENSION) | ||
diff --git a/src/lib/libcrypto/x509/x509_lu.c b/src/lib/libcrypto/x509/x509_lu.c deleted file mode 100644 index 863c738cad..0000000000 --- a/src/lib/libcrypto/x509/x509_lu.c +++ /dev/null | |||
@@ -1,529 +0,0 @@ | |||
1 | /* crypto/x509/x509_lu.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/lhash.h> | ||
62 | #include <openssl/x509.h> | ||
63 | |||
64 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *x509_store_meth=NULL; | ||
65 | |||
66 | X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method) | ||
67 | { | ||
68 | X509_LOOKUP *ret; | ||
69 | |||
70 | ret=(X509_LOOKUP *)OPENSSL_malloc(sizeof(X509_LOOKUP)); | ||
71 | if (ret == NULL) return NULL; | ||
72 | |||
73 | ret->init=0; | ||
74 | ret->skip=0; | ||
75 | ret->method=method; | ||
76 | ret->method_data=NULL; | ||
77 | ret->store_ctx=NULL; | ||
78 | if ((method->new_item != NULL) && !method->new_item(ret)) | ||
79 | { | ||
80 | OPENSSL_free(ret); | ||
81 | return NULL; | ||
82 | } | ||
83 | return ret; | ||
84 | } | ||
85 | |||
86 | void X509_LOOKUP_free(X509_LOOKUP *ctx) | ||
87 | { | ||
88 | if (ctx == NULL) return; | ||
89 | if ( (ctx->method != NULL) && | ||
90 | (ctx->method->free != NULL)) | ||
91 | ctx->method->free(ctx); | ||
92 | OPENSSL_free(ctx); | ||
93 | } | ||
94 | |||
95 | int X509_LOOKUP_init(X509_LOOKUP *ctx) | ||
96 | { | ||
97 | if (ctx->method == NULL) return 0; | ||
98 | if (ctx->method->init != NULL) | ||
99 | return ctx->method->init(ctx); | ||
100 | else | ||
101 | return 1; | ||
102 | } | ||
103 | |||
104 | int X509_LOOKUP_shutdown(X509_LOOKUP *ctx) | ||
105 | { | ||
106 | if (ctx->method == NULL) return 0; | ||
107 | if (ctx->method->shutdown != NULL) | ||
108 | return ctx->method->shutdown(ctx); | ||
109 | else | ||
110 | return 1; | ||
111 | } | ||
112 | |||
113 | int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, | ||
114 | char **ret) | ||
115 | { | ||
116 | if (ctx->method == NULL) return -1; | ||
117 | if (ctx->method->ctrl != NULL) | ||
118 | return ctx->method->ctrl(ctx,cmd,argc,argl,ret); | ||
119 | else | ||
120 | return 1; | ||
121 | } | ||
122 | |||
123 | int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name, | ||
124 | X509_OBJECT *ret) | ||
125 | { | ||
126 | if ((ctx->method == NULL) || (ctx->method->get_by_subject == NULL)) | ||
127 | return X509_LU_FAIL; | ||
128 | if (ctx->skip) return 0; | ||
129 | return ctx->method->get_by_subject(ctx,type,name,ret); | ||
130 | } | ||
131 | |||
132 | int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name, | ||
133 | ASN1_INTEGER *serial, X509_OBJECT *ret) | ||
134 | { | ||
135 | if ((ctx->method == NULL) || | ||
136 | (ctx->method->get_by_issuer_serial == NULL)) | ||
137 | return X509_LU_FAIL; | ||
138 | return ctx->method->get_by_issuer_serial(ctx,type,name,serial,ret); | ||
139 | } | ||
140 | |||
141 | int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type, | ||
142 | unsigned char *bytes, int len, X509_OBJECT *ret) | ||
143 | { | ||
144 | if ((ctx->method == NULL) || (ctx->method->get_by_fingerprint == NULL)) | ||
145 | return X509_LU_FAIL; | ||
146 | return ctx->method->get_by_fingerprint(ctx,type,bytes,len,ret); | ||
147 | } | ||
148 | |||
149 | int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len, | ||
150 | X509_OBJECT *ret) | ||
151 | { | ||
152 | if ((ctx->method == NULL) || (ctx->method->get_by_alias == NULL)) | ||
153 | return X509_LU_FAIL; | ||
154 | return ctx->method->get_by_alias(ctx,type,str,len,ret); | ||
155 | } | ||
156 | |||
157 | |||
158 | static int x509_object_cmp(const X509_OBJECT * const *a, const X509_OBJECT * const *b) | ||
159 | { | ||
160 | int ret; | ||
161 | |||
162 | ret=((*a)->type - (*b)->type); | ||
163 | if (ret) return ret; | ||
164 | switch ((*a)->type) | ||
165 | { | ||
166 | case X509_LU_X509: | ||
167 | ret=X509_subject_name_cmp((*a)->data.x509,(*b)->data.x509); | ||
168 | break; | ||
169 | case X509_LU_CRL: | ||
170 | ret=X509_CRL_cmp((*a)->data.crl,(*b)->data.crl); | ||
171 | break; | ||
172 | default: | ||
173 | /* abort(); */ | ||
174 | return 0; | ||
175 | } | ||
176 | return ret; | ||
177 | } | ||
178 | |||
179 | X509_STORE *X509_STORE_new(void) | ||
180 | { | ||
181 | X509_STORE *ret; | ||
182 | |||
183 | if ((ret=(X509_STORE *)OPENSSL_malloc(sizeof(X509_STORE))) == NULL) | ||
184 | return NULL; | ||
185 | ret->objs = sk_X509_OBJECT_new(x509_object_cmp); | ||
186 | ret->cache=1; | ||
187 | ret->get_cert_methods=sk_X509_LOOKUP_new_null(); | ||
188 | ret->verify=NULL; | ||
189 | ret->verify_cb=NULL; | ||
190 | memset(&ret->ex_data,0,sizeof(CRYPTO_EX_DATA)); | ||
191 | ret->references=1; | ||
192 | ret->depth=0; | ||
193 | return ret; | ||
194 | } | ||
195 | |||
196 | static void cleanup(X509_OBJECT *a) | ||
197 | { | ||
198 | if (a->type == X509_LU_X509) | ||
199 | { | ||
200 | X509_free(a->data.x509); | ||
201 | } | ||
202 | else if (a->type == X509_LU_CRL) | ||
203 | { | ||
204 | X509_CRL_free(a->data.crl); | ||
205 | } | ||
206 | else | ||
207 | { | ||
208 | /* abort(); */ | ||
209 | } | ||
210 | |||
211 | OPENSSL_free(a); | ||
212 | } | ||
213 | |||
214 | void X509_STORE_free(X509_STORE *vfy) | ||
215 | { | ||
216 | int i; | ||
217 | STACK_OF(X509_LOOKUP) *sk; | ||
218 | X509_LOOKUP *lu; | ||
219 | |||
220 | if (vfy == NULL) | ||
221 | return; | ||
222 | |||
223 | sk=vfy->get_cert_methods; | ||
224 | for (i=0; i<sk_X509_LOOKUP_num(sk); i++) | ||
225 | { | ||
226 | lu=sk_X509_LOOKUP_value(sk,i); | ||
227 | X509_LOOKUP_shutdown(lu); | ||
228 | X509_LOOKUP_free(lu); | ||
229 | } | ||
230 | sk_X509_LOOKUP_free(sk); | ||
231 | sk_X509_OBJECT_pop_free(vfy->objs, cleanup); | ||
232 | |||
233 | CRYPTO_free_ex_data(x509_store_meth,vfy,&vfy->ex_data); | ||
234 | OPENSSL_free(vfy); | ||
235 | } | ||
236 | |||
237 | X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m) | ||
238 | { | ||
239 | int i; | ||
240 | STACK_OF(X509_LOOKUP) *sk; | ||
241 | X509_LOOKUP *lu; | ||
242 | |||
243 | sk=v->get_cert_methods; | ||
244 | for (i=0; i<sk_X509_LOOKUP_num(sk); i++) | ||
245 | { | ||
246 | lu=sk_X509_LOOKUP_value(sk,i); | ||
247 | if (m == lu->method) | ||
248 | { | ||
249 | return lu; | ||
250 | } | ||
251 | } | ||
252 | /* a new one */ | ||
253 | lu=X509_LOOKUP_new(m); | ||
254 | if (lu == NULL) | ||
255 | return NULL; | ||
256 | else | ||
257 | { | ||
258 | lu->store_ctx=v; | ||
259 | if (sk_X509_LOOKUP_push(v->get_cert_methods,lu)) | ||
260 | return lu; | ||
261 | else | ||
262 | { | ||
263 | X509_LOOKUP_free(lu); | ||
264 | return NULL; | ||
265 | } | ||
266 | } | ||
267 | } | ||
268 | |||
269 | int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, | ||
270 | X509_OBJECT *ret) | ||
271 | { | ||
272 | X509_STORE *ctx=vs->ctx; | ||
273 | X509_LOOKUP *lu; | ||
274 | X509_OBJECT stmp,*tmp; | ||
275 | int i,j; | ||
276 | |||
277 | tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name); | ||
278 | |||
279 | if (tmp == NULL) | ||
280 | { | ||
281 | for (i=vs->current_method; i<sk_X509_LOOKUP_num(ctx->get_cert_methods); i++) | ||
282 | { | ||
283 | lu=sk_X509_LOOKUP_value(ctx->get_cert_methods,i); | ||
284 | j=X509_LOOKUP_by_subject(lu,type,name,&stmp); | ||
285 | if (j < 0) | ||
286 | { | ||
287 | vs->current_method=j; | ||
288 | return j; | ||
289 | } | ||
290 | else if (j) | ||
291 | { | ||
292 | tmp= &stmp; | ||
293 | break; | ||
294 | } | ||
295 | } | ||
296 | vs->current_method=0; | ||
297 | if (tmp == NULL) | ||
298 | return 0; | ||
299 | } | ||
300 | |||
301 | /* if (ret->data.ptr != NULL) | ||
302 | X509_OBJECT_free_contents(ret); */ | ||
303 | |||
304 | ret->type=tmp->type; | ||
305 | ret->data.ptr=tmp->data.ptr; | ||
306 | |||
307 | X509_OBJECT_up_ref_count(ret); | ||
308 | |||
309 | return 1; | ||
310 | } | ||
311 | |||
312 | int X509_STORE_add_cert(X509_STORE *ctx, X509 *x) | ||
313 | { | ||
314 | X509_OBJECT *obj; | ||
315 | int ret=1; | ||
316 | |||
317 | if (x == NULL) return 0; | ||
318 | obj=(X509_OBJECT *)OPENSSL_malloc(sizeof(X509_OBJECT)); | ||
319 | if (obj == NULL) | ||
320 | { | ||
321 | X509err(X509_F_X509_STORE_ADD_CERT,ERR_R_MALLOC_FAILURE); | ||
322 | return 0; | ||
323 | } | ||
324 | obj->type=X509_LU_X509; | ||
325 | obj->data.x509=x; | ||
326 | |||
327 | CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE); | ||
328 | |||
329 | X509_OBJECT_up_ref_count(obj); | ||
330 | |||
331 | |||
332 | if (X509_OBJECT_retrieve_match(ctx->objs, obj)) | ||
333 | { | ||
334 | X509_OBJECT_free_contents(obj); | ||
335 | OPENSSL_free(obj); | ||
336 | X509err(X509_F_X509_STORE_ADD_CERT,X509_R_CERT_ALREADY_IN_HASH_TABLE); | ||
337 | ret=0; | ||
338 | } | ||
339 | else sk_X509_OBJECT_push(ctx->objs, obj); | ||
340 | |||
341 | CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE); | ||
342 | |||
343 | return ret; | ||
344 | } | ||
345 | |||
346 | int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x) | ||
347 | { | ||
348 | X509_OBJECT *obj; | ||
349 | int ret=1; | ||
350 | |||
351 | if (x == NULL) return 0; | ||
352 | obj=(X509_OBJECT *)OPENSSL_malloc(sizeof(X509_OBJECT)); | ||
353 | if (obj == NULL) | ||
354 | { | ||
355 | X509err(X509_F_X509_STORE_ADD_CRL,ERR_R_MALLOC_FAILURE); | ||
356 | return 0; | ||
357 | } | ||
358 | obj->type=X509_LU_CRL; | ||
359 | obj->data.crl=x; | ||
360 | |||
361 | CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE); | ||
362 | |||
363 | X509_OBJECT_up_ref_count(obj); | ||
364 | |||
365 | if (X509_OBJECT_retrieve_match(ctx->objs, obj)) | ||
366 | { | ||
367 | X509_OBJECT_free_contents(obj); | ||
368 | OPENSSL_free(obj); | ||
369 | X509err(X509_F_X509_STORE_ADD_CRL,X509_R_CERT_ALREADY_IN_HASH_TABLE); | ||
370 | ret=0; | ||
371 | } | ||
372 | else sk_X509_OBJECT_push(ctx->objs, obj); | ||
373 | |||
374 | CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE); | ||
375 | |||
376 | return ret; | ||
377 | } | ||
378 | |||
379 | void X509_OBJECT_up_ref_count(X509_OBJECT *a) | ||
380 | { | ||
381 | switch (a->type) | ||
382 | { | ||
383 | case X509_LU_X509: | ||
384 | CRYPTO_add(&a->data.x509->references,1,CRYPTO_LOCK_X509); | ||
385 | break; | ||
386 | case X509_LU_CRL: | ||
387 | CRYPTO_add(&a->data.crl->references,1,CRYPTO_LOCK_X509_CRL); | ||
388 | break; | ||
389 | } | ||
390 | } | ||
391 | |||
392 | void X509_OBJECT_free_contents(X509_OBJECT *a) | ||
393 | { | ||
394 | switch (a->type) | ||
395 | { | ||
396 | case X509_LU_X509: | ||
397 | X509_free(a->data.x509); | ||
398 | break; | ||
399 | case X509_LU_CRL: | ||
400 | X509_CRL_free(a->data.crl); | ||
401 | break; | ||
402 | } | ||
403 | } | ||
404 | |||
405 | int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, | ||
406 | X509_NAME *name) | ||
407 | { | ||
408 | X509_OBJECT stmp; | ||
409 | X509 x509_s; | ||
410 | X509_CINF cinf_s; | ||
411 | X509_CRL crl_s; | ||
412 | X509_CRL_INFO crl_info_s; | ||
413 | |||
414 | stmp.type=type; | ||
415 | switch (type) | ||
416 | { | ||
417 | case X509_LU_X509: | ||
418 | stmp.data.x509= &x509_s; | ||
419 | x509_s.cert_info= &cinf_s; | ||
420 | cinf_s.subject=name; | ||
421 | break; | ||
422 | case X509_LU_CRL: | ||
423 | stmp.data.crl= &crl_s; | ||
424 | crl_s.crl= &crl_info_s; | ||
425 | crl_info_s.issuer=name; | ||
426 | break; | ||
427 | default: | ||
428 | /* abort(); */ | ||
429 | return -1; | ||
430 | } | ||
431 | |||
432 | return sk_X509_OBJECT_find(h,&stmp); | ||
433 | } | ||
434 | |||
435 | X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h, int type, | ||
436 | X509_NAME *name) | ||
437 | { | ||
438 | int idx; | ||
439 | idx = X509_OBJECT_idx_by_subject(h, type, name); | ||
440 | if (idx==-1) return NULL; | ||
441 | return sk_X509_OBJECT_value(h, idx); | ||
442 | } | ||
443 | |||
444 | X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h, X509_OBJECT *x) | ||
445 | { | ||
446 | int idx, i; | ||
447 | X509_OBJECT *obj; | ||
448 | idx = sk_X509_OBJECT_find(h, x); | ||
449 | if (idx == -1) return NULL; | ||
450 | if (x->type != X509_LU_X509) return sk_X509_OBJECT_value(h, idx); | ||
451 | for (i = idx; i < sk_X509_OBJECT_num(h); i++) | ||
452 | { | ||
453 | obj = sk_X509_OBJECT_value(h, i); | ||
454 | if (x509_object_cmp((const X509_OBJECT **)&obj, (const X509_OBJECT **)&x)) | ||
455 | return NULL; | ||
456 | if ((x->type != X509_LU_X509) || !X509_cmp(obj->data.x509, x->data.x509)) | ||
457 | return obj; | ||
458 | } | ||
459 | return NULL; | ||
460 | } | ||
461 | |||
462 | |||
463 | /* Try to get issuer certificate from store. Due to limitations | ||
464 | * of the API this can only retrieve a single certificate matching | ||
465 | * a given subject name. However it will fill the cache with all | ||
466 | * matching certificates, so we can examine the cache for all | ||
467 | * matches. | ||
468 | * | ||
469 | * Return values are: | ||
470 | * 1 lookup successful. | ||
471 | * 0 certificate not found. | ||
472 | * -1 some other error. | ||
473 | */ | ||
474 | |||
475 | |||
476 | int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x) | ||
477 | { | ||
478 | X509_NAME *xn; | ||
479 | X509_OBJECT obj, *pobj; | ||
480 | int i, ok, idx; | ||
481 | xn=X509_get_issuer_name(x); | ||
482 | ok=X509_STORE_get_by_subject(ctx,X509_LU_X509,xn,&obj); | ||
483 | if (ok != X509_LU_X509) | ||
484 | { | ||
485 | if (ok == X509_LU_RETRY) | ||
486 | { | ||
487 | X509_OBJECT_free_contents(&obj); | ||
488 | X509err(X509_F_X509_VERIFY_CERT,X509_R_SHOULD_RETRY); | ||
489 | return -1; | ||
490 | } | ||
491 | else if (ok != X509_LU_FAIL) | ||
492 | { | ||
493 | X509_OBJECT_free_contents(&obj); | ||
494 | /* not good :-(, break anyway */ | ||
495 | return -1; | ||
496 | } | ||
497 | return 0; | ||
498 | } | ||
499 | /* If certificate matches all OK */ | ||
500 | if (ctx->check_issued(ctx, x, obj.data.x509)) | ||
501 | { | ||
502 | *issuer = obj.data.x509; | ||
503 | return 1; | ||
504 | } | ||
505 | X509_OBJECT_free_contents(&obj); | ||
506 | /* Else find index of first matching cert */ | ||
507 | idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn); | ||
508 | /* This shouldn't normally happen since we already have one match */ | ||
509 | if (idx == -1) return 0; | ||
510 | |||
511 | /* Look through all matching certificates for a suitable issuer */ | ||
512 | for (i = idx; i < sk_X509_OBJECT_num(ctx->ctx->objs); i++) | ||
513 | { | ||
514 | pobj = sk_X509_OBJECT_value(ctx->ctx->objs, i); | ||
515 | /* See if we've ran out of matches */ | ||
516 | if (pobj->type != X509_LU_X509) return 0; | ||
517 | if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509))) return 0; | ||
518 | if (ctx->check_issued(ctx, x, pobj->data.x509)) | ||
519 | { | ||
520 | *issuer = pobj->data.x509; | ||
521 | X509_OBJECT_up_ref_count(pobj); | ||
522 | return 1; | ||
523 | } | ||
524 | } | ||
525 | return 0; | ||
526 | } | ||
527 | |||
528 | IMPLEMENT_STACK_OF(X509_LOOKUP) | ||
529 | IMPLEMENT_STACK_OF(X509_OBJECT) | ||
diff --git a/src/lib/libcrypto/x509/x509_obj.c b/src/lib/libcrypto/x509/x509_obj.c deleted file mode 100644 index f0271fdfa1..0000000000 --- a/src/lib/libcrypto/x509/x509_obj.c +++ /dev/null | |||
@@ -1,225 +0,0 @@ | |||
1 | /* crypto/x509/x509_obj.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/lhash.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/x509.h> | ||
64 | #include <openssl/buffer.h> | ||
65 | |||
66 | char *X509_NAME_oneline(X509_NAME *a, char *buf, int len) | ||
67 | { | ||
68 | X509_NAME_ENTRY *ne; | ||
69 | int i; | ||
70 | int n,lold,l,l1,l2,num,j,type; | ||
71 | const char *s; | ||
72 | char *p; | ||
73 | unsigned char *q; | ||
74 | BUF_MEM *b=NULL; | ||
75 | static char hex[17]="0123456789ABCDEF"; | ||
76 | int gs_doit[4]; | ||
77 | char tmp_buf[80]; | ||
78 | #ifdef CHARSET_EBCDIC | ||
79 | char ebcdic_buf[1024]; | ||
80 | #endif | ||
81 | |||
82 | if (buf == NULL) | ||
83 | { | ||
84 | if ((b=BUF_MEM_new()) == NULL) goto err; | ||
85 | if (!BUF_MEM_grow(b,200)) goto err; | ||
86 | b->data[0]='\0'; | ||
87 | len=200; | ||
88 | } | ||
89 | if (a == NULL) | ||
90 | { | ||
91 | if(b) | ||
92 | { | ||
93 | buf=b->data; | ||
94 | OPENSSL_free(b); | ||
95 | } | ||
96 | strncpy(buf,"NO X509_NAME",len); | ||
97 | return buf; | ||
98 | } | ||
99 | |||
100 | len--; /* space for '\0' */ | ||
101 | l=0; | ||
102 | for (i=0; i<sk_X509_NAME_ENTRY_num(a->entries); i++) | ||
103 | { | ||
104 | ne=sk_X509_NAME_ENTRY_value(a->entries,i); | ||
105 | n=OBJ_obj2nid(ne->object); | ||
106 | if ((n == NID_undef) || ((s=OBJ_nid2sn(n)) == NULL)) | ||
107 | { | ||
108 | i2t_ASN1_OBJECT(tmp_buf,sizeof(tmp_buf),ne->object); | ||
109 | s=tmp_buf; | ||
110 | } | ||
111 | l1=strlen(s); | ||
112 | |||
113 | type=ne->value->type; | ||
114 | num=ne->value->length; | ||
115 | q=ne->value->data; | ||
116 | #ifdef CHARSET_EBCDIC | ||
117 | if (type == V_ASN1_GENERALSTRING || | ||
118 | type == V_ASN1_VISIBLESTRING || | ||
119 | type == V_ASN1_PRINTABLESTRING || | ||
120 | type == V_ASN1_TELETEXSTRING || | ||
121 | type == V_ASN1_VISIBLESTRING || | ||
122 | type == V_ASN1_IA5STRING) { | ||
123 | ascii2ebcdic(ebcdic_buf, q, | ||
124 | (num > sizeof ebcdic_buf) | ||
125 | ? sizeof ebcdic_buf : num); | ||
126 | q=ebcdic_buf; | ||
127 | } | ||
128 | #endif | ||
129 | |||
130 | if ((type == V_ASN1_GENERALSTRING) && ((num%4) == 0)) | ||
131 | { | ||
132 | gs_doit[0]=gs_doit[1]=gs_doit[2]=gs_doit[3]=0; | ||
133 | for (j=0; j<num; j++) | ||
134 | if (q[j] != 0) gs_doit[j&3]=1; | ||
135 | |||
136 | if (gs_doit[0]|gs_doit[1]|gs_doit[2]) | ||
137 | gs_doit[0]=gs_doit[1]=gs_doit[2]=gs_doit[3]=1; | ||
138 | else | ||
139 | { | ||
140 | gs_doit[0]=gs_doit[1]=gs_doit[2]=0; | ||
141 | gs_doit[3]=1; | ||
142 | } | ||
143 | } | ||
144 | else | ||
145 | gs_doit[0]=gs_doit[1]=gs_doit[2]=gs_doit[3]=1; | ||
146 | |||
147 | for (l2=j=0; j<num; j++) | ||
148 | { | ||
149 | if (!gs_doit[j&3]) continue; | ||
150 | l2++; | ||
151 | #ifndef CHARSET_EBCDIC | ||
152 | if ((q[j] < ' ') || (q[j] > '~')) l2+=3; | ||
153 | #else | ||
154 | if ((os_toascii[q[j]] < os_toascii[' ']) || | ||
155 | (os_toascii[q[j]] > os_toascii['~'])) l2+=3; | ||
156 | #endif | ||
157 | } | ||
158 | |||
159 | lold=l; | ||
160 | l+=1+l1+1+l2; | ||
161 | if (b != NULL) | ||
162 | { | ||
163 | if (!BUF_MEM_grow(b,l+1)) goto err; | ||
164 | p= &(b->data[lold]); | ||
165 | } | ||
166 | else if (l > len) | ||
167 | { | ||
168 | break; | ||
169 | } | ||
170 | else | ||
171 | p= &(buf[lold]); | ||
172 | *(p++)='/'; | ||
173 | memcpy(p,s,(unsigned int)l1); p+=l1; | ||
174 | *(p++)='='; | ||
175 | |||
176 | #ifndef CHARSET_EBCDIC /* q was assigned above already. */ | ||
177 | q=ne->value->data; | ||
178 | #endif | ||
179 | |||
180 | for (j=0; j<num; j++) | ||
181 | { | ||
182 | if (!gs_doit[j&3]) continue; | ||
183 | #ifndef CHARSET_EBCDIC | ||
184 | n=q[j]; | ||
185 | if ((n < ' ') || (n > '~')) | ||
186 | { | ||
187 | *(p++)='\\'; | ||
188 | *(p++)='x'; | ||
189 | *(p++)=hex[(n>>4)&0x0f]; | ||
190 | *(p++)=hex[n&0x0f]; | ||
191 | } | ||
192 | else | ||
193 | *(p++)=n; | ||
194 | #else | ||
195 | n=os_toascii[q[j]]; | ||
196 | if ((n < os_toascii[' ']) || | ||
197 | (n > os_toascii['~'])) | ||
198 | { | ||
199 | *(p++)='\\'; | ||
200 | *(p++)='x'; | ||
201 | *(p++)=hex[(n>>4)&0x0f]; | ||
202 | *(p++)=hex[n&0x0f]; | ||
203 | } | ||
204 | else | ||
205 | *(p++)=q[j]; | ||
206 | #endif | ||
207 | } | ||
208 | *p='\0'; | ||
209 | } | ||
210 | if (b != NULL) | ||
211 | { | ||
212 | p=b->data; | ||
213 | OPENSSL_free(b); | ||
214 | } | ||
215 | else | ||
216 | p=buf; | ||
217 | if (i == 0) | ||
218 | *p = '\0'; | ||
219 | return(p); | ||
220 | err: | ||
221 | X509err(X509_F_X509_NAME_ONELINE,ERR_R_MALLOC_FAILURE); | ||
222 | if (b != NULL) BUF_MEM_free(b); | ||
223 | return(NULL); | ||
224 | } | ||
225 | |||
diff --git a/src/lib/libcrypto/x509/x509_r2x.c b/src/lib/libcrypto/x509/x509_r2x.c deleted file mode 100644 index db051033d9..0000000000 --- a/src/lib/libcrypto/x509/x509_r2x.c +++ /dev/null | |||
@@ -1,110 +0,0 @@ | |||
1 | /* crypto/x509/x509_r2x.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/bn.h> | ||
62 | #include <openssl/evp.h> | ||
63 | #include <openssl/asn1.h> | ||
64 | #include <openssl/x509.h> | ||
65 | #include <openssl/objects.h> | ||
66 | #include <openssl/buffer.h> | ||
67 | |||
68 | X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey) | ||
69 | { | ||
70 | X509 *ret=NULL; | ||
71 | X509_CINF *xi=NULL; | ||
72 | X509_NAME *xn; | ||
73 | |||
74 | if ((ret=X509_new()) == NULL) | ||
75 | { | ||
76 | X509err(X509_F_X509_REQ_TO_X509,ERR_R_MALLOC_FAILURE); | ||
77 | goto err; | ||
78 | } | ||
79 | |||
80 | /* duplicate the request */ | ||
81 | xi=ret->cert_info; | ||
82 | |||
83 | if (sk_X509_ATTRIBUTE_num(r->req_info->attributes) != 0) | ||
84 | { | ||
85 | if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err; | ||
86 | if (!ASN1_INTEGER_set(xi->version,2)) goto err; | ||
87 | /* xi->extensions=ri->attributes; <- bad, should not ever be done | ||
88 | ri->attributes=NULL; */ | ||
89 | } | ||
90 | |||
91 | xn=X509_REQ_get_subject_name(r); | ||
92 | X509_set_subject_name(ret,X509_NAME_dup(xn)); | ||
93 | X509_set_issuer_name(ret,X509_NAME_dup(xn)); | ||
94 | |||
95 | X509_gmtime_adj(xi->validity->notBefore,0); | ||
96 | X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days); | ||
97 | |||
98 | X509_set_pubkey(ret,X509_REQ_get_pubkey(r)); | ||
99 | |||
100 | if (!X509_sign(ret,pkey,EVP_md5())) | ||
101 | goto err; | ||
102 | if (0) | ||
103 | { | ||
104 | err: | ||
105 | X509_free(ret); | ||
106 | ret=NULL; | ||
107 | } | ||
108 | return(ret); | ||
109 | } | ||
110 | |||
diff --git a/src/lib/libcrypto/x509/x509_req.c b/src/lib/libcrypto/x509/x509_req.c deleted file mode 100644 index 7eca1bd57a..0000000000 --- a/src/lib/libcrypto/x509/x509_req.c +++ /dev/null | |||
@@ -1,278 +0,0 @@ | |||
1 | /* crypto/x509/x509_req.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/bn.h> | ||
62 | #include <openssl/evp.h> | ||
63 | #include <openssl/asn1.h> | ||
64 | #include <openssl/x509.h> | ||
65 | #include <openssl/objects.h> | ||
66 | #include <openssl/buffer.h> | ||
67 | #include <openssl/pem.h> | ||
68 | |||
69 | X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md) | ||
70 | { | ||
71 | X509_REQ *ret; | ||
72 | X509_REQ_INFO *ri; | ||
73 | int i; | ||
74 | EVP_PKEY *pktmp; | ||
75 | |||
76 | ret=X509_REQ_new(); | ||
77 | if (ret == NULL) | ||
78 | { | ||
79 | X509err(X509_F_X509_TO_X509_REQ,ERR_R_MALLOC_FAILURE); | ||
80 | goto err; | ||
81 | } | ||
82 | |||
83 | ri=ret->req_info; | ||
84 | |||
85 | ri->version->length=1; | ||
86 | ri->version->data=(unsigned char *)OPENSSL_malloc(1); | ||
87 | if (ri->version->data == NULL) goto err; | ||
88 | ri->version->data[0]=0; /* version == 0 */ | ||
89 | |||
90 | if (!X509_REQ_set_subject_name(ret,X509_get_subject_name(x))) | ||
91 | goto err; | ||
92 | |||
93 | pktmp = X509_get_pubkey(x); | ||
94 | i=X509_REQ_set_pubkey(ret,pktmp); | ||
95 | EVP_PKEY_free(pktmp); | ||
96 | if (!i) goto err; | ||
97 | |||
98 | if (pkey != NULL) | ||
99 | { | ||
100 | if (!X509_REQ_sign(ret,pkey,md)) | ||
101 | goto err; | ||
102 | } | ||
103 | return(ret); | ||
104 | err: | ||
105 | X509_REQ_free(ret); | ||
106 | return(NULL); | ||
107 | } | ||
108 | |||
109 | EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) | ||
110 | { | ||
111 | if ((req == NULL) || (req->req_info == NULL)) | ||
112 | return(NULL); | ||
113 | return(X509_PUBKEY_get(req->req_info->pubkey)); | ||
114 | } | ||
115 | |||
116 | /* It seems several organisations had the same idea of including a list of | ||
117 | * extensions in a certificate request. There are at least two OIDs that are | ||
118 | * used and there may be more: so the list is configurable. | ||
119 | */ | ||
120 | |||
121 | static int ext_nid_list[] = { NID_ms_ext_req, NID_ext_req, NID_undef}; | ||
122 | |||
123 | static int *ext_nids = ext_nid_list; | ||
124 | |||
125 | int X509_REQ_extension_nid(int req_nid) | ||
126 | { | ||
127 | int i, nid; | ||
128 | for(i = 0; ; i++) { | ||
129 | nid = ext_nids[i]; | ||
130 | if(nid == NID_undef) return 0; | ||
131 | else if (req_nid == nid) return 1; | ||
132 | } | ||
133 | } | ||
134 | |||
135 | int *X509_REQ_get_extension_nids(void) | ||
136 | { | ||
137 | return ext_nids; | ||
138 | } | ||
139 | |||
140 | void X509_REQ_set_extension_nids(int *nids) | ||
141 | { | ||
142 | ext_nids = nids; | ||
143 | } | ||
144 | |||
145 | STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) | ||
146 | { | ||
147 | X509_ATTRIBUTE *attr; | ||
148 | STACK_OF(X509_ATTRIBUTE) *sk; | ||
149 | ASN1_TYPE *ext = NULL; | ||
150 | int i; | ||
151 | unsigned char *p; | ||
152 | if ((req == NULL) || (req->req_info == NULL)) | ||
153 | return(NULL); | ||
154 | sk=req->req_info->attributes; | ||
155 | if (!sk) return NULL; | ||
156 | for(i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) { | ||
157 | attr = sk_X509_ATTRIBUTE_value(sk, i); | ||
158 | if(X509_REQ_extension_nid(OBJ_obj2nid(attr->object))) { | ||
159 | if(attr->set && sk_ASN1_TYPE_num(attr->value.set)) | ||
160 | ext = sk_ASN1_TYPE_value(attr->value.set, 0); | ||
161 | else ext = attr->value.single; | ||
162 | break; | ||
163 | } | ||
164 | } | ||
165 | if(!ext || (ext->type != V_ASN1_SEQUENCE)) return NULL; | ||
166 | p = ext->value.sequence->data; | ||
167 | return d2i_ASN1_SET_OF_X509_EXTENSION(NULL, &p, | ||
168 | ext->value.sequence->length, | ||
169 | d2i_X509_EXTENSION, X509_EXTENSION_free, | ||
170 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | ||
171 | } | ||
172 | |||
173 | /* Add a STACK_OF extensions to a certificate request: allow alternative OIDs | ||
174 | * in case we want to create a non standard one. | ||
175 | */ | ||
176 | |||
177 | int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, | ||
178 | int nid) | ||
179 | { | ||
180 | unsigned char *p = NULL, *q; | ||
181 | long len; | ||
182 | ASN1_TYPE *at = NULL; | ||
183 | X509_ATTRIBUTE *attr = NULL; | ||
184 | if(!(at = ASN1_TYPE_new()) || | ||
185 | !(at->value.sequence = ASN1_STRING_new())) goto err; | ||
186 | |||
187 | at->type = V_ASN1_SEQUENCE; | ||
188 | /* Generate encoding of extensions */ | ||
189 | len = i2d_ASN1_SET_OF_X509_EXTENSION(exts, NULL, i2d_X509_EXTENSION, | ||
190 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, IS_SEQUENCE); | ||
191 | if(!(p = OPENSSL_malloc(len))) goto err; | ||
192 | q = p; | ||
193 | i2d_ASN1_SET_OF_X509_EXTENSION(exts, &q, i2d_X509_EXTENSION, | ||
194 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, IS_SEQUENCE); | ||
195 | at->value.sequence->data = p; | ||
196 | p = NULL; | ||
197 | at->value.sequence->length = len; | ||
198 | if(!(attr = X509_ATTRIBUTE_new())) goto err; | ||
199 | if(!(attr->value.set = sk_ASN1_TYPE_new_null())) goto err; | ||
200 | if(!sk_ASN1_TYPE_push(attr->value.set, at)) goto err; | ||
201 | at = NULL; | ||
202 | attr->set = 1; | ||
203 | attr->object = OBJ_nid2obj(nid); | ||
204 | if(!sk_X509_ATTRIBUTE_push(req->req_info->attributes, attr)) goto err; | ||
205 | return 1; | ||
206 | err: | ||
207 | if(p) OPENSSL_free(p); | ||
208 | X509_ATTRIBUTE_free(attr); | ||
209 | ASN1_TYPE_free(at); | ||
210 | return 0; | ||
211 | } | ||
212 | /* This is the normal usage: use the "official" OID */ | ||
213 | int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts) | ||
214 | { | ||
215 | return X509_REQ_add_extensions_nid(req, exts, NID_ext_req); | ||
216 | } | ||
217 | |||
218 | /* Request attribute functions */ | ||
219 | |||
220 | int X509_REQ_get_attr_count(const X509_REQ *req) | ||
221 | { | ||
222 | return X509at_get_attr_count(req->req_info->attributes); | ||
223 | } | ||
224 | |||
225 | int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, | ||
226 | int lastpos) | ||
227 | { | ||
228 | return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos); | ||
229 | } | ||
230 | |||
231 | int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, | ||
232 | int lastpos) | ||
233 | { | ||
234 | return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos); | ||
235 | } | ||
236 | |||
237 | X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc) | ||
238 | { | ||
239 | return X509at_get_attr(req->req_info->attributes, loc); | ||
240 | } | ||
241 | |||
242 | X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc) | ||
243 | { | ||
244 | return X509at_delete_attr(req->req_info->attributes, loc); | ||
245 | } | ||
246 | |||
247 | int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr) | ||
248 | { | ||
249 | if(X509at_add1_attr(&req->req_info->attributes, attr)) return 1; | ||
250 | return 0; | ||
251 | } | ||
252 | |||
253 | int X509_REQ_add1_attr_by_OBJ(X509_REQ *req, | ||
254 | ASN1_OBJECT *obj, int type, | ||
255 | unsigned char *bytes, int len) | ||
256 | { | ||
257 | if(X509at_add1_attr_by_OBJ(&req->req_info->attributes, obj, | ||
258 | type, bytes, len)) return 1; | ||
259 | return 0; | ||
260 | } | ||
261 | |||
262 | int X509_REQ_add1_attr_by_NID(X509_REQ *req, | ||
263 | int nid, int type, | ||
264 | unsigned char *bytes, int len) | ||
265 | { | ||
266 | if(X509at_add1_attr_by_NID(&req->req_info->attributes, nid, | ||
267 | type, bytes, len)) return 1; | ||
268 | return 0; | ||
269 | } | ||
270 | |||
271 | int X509_REQ_add1_attr_by_txt(X509_REQ *req, | ||
272 | char *attrname, int type, | ||
273 | unsigned char *bytes, int len) | ||
274 | { | ||
275 | if(X509at_add1_attr_by_txt(&req->req_info->attributes, attrname, | ||
276 | type, bytes, len)) return 1; | ||
277 | return 0; | ||
278 | } | ||
diff --git a/src/lib/libcrypto/x509/x509_set.c b/src/lib/libcrypto/x509/x509_set.c deleted file mode 100644 index aaf61ca062..0000000000 --- a/src/lib/libcrypto/x509/x509_set.c +++ /dev/null | |||
@@ -1,150 +0,0 @@ | |||
1 | /* crypto/x509/x509_set.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/evp.h> | ||
64 | #include <openssl/x509.h> | ||
65 | |||
66 | int X509_set_version(X509 *x, long version) | ||
67 | { | ||
68 | if (x == NULL) return(0); | ||
69 | if (x->cert_info->version == NULL) | ||
70 | { | ||
71 | if ((x->cert_info->version=M_ASN1_INTEGER_new()) == NULL) | ||
72 | return(0); | ||
73 | } | ||
74 | return(ASN1_INTEGER_set(x->cert_info->version,version)); | ||
75 | } | ||
76 | |||
77 | int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial) | ||
78 | { | ||
79 | ASN1_INTEGER *in; | ||
80 | |||
81 | if (x == NULL) return(0); | ||
82 | in=x->cert_info->serialNumber; | ||
83 | if (in != serial) | ||
84 | { | ||
85 | in=M_ASN1_INTEGER_dup(serial); | ||
86 | if (in != NULL) | ||
87 | { | ||
88 | M_ASN1_INTEGER_free(x->cert_info->serialNumber); | ||
89 | x->cert_info->serialNumber=in; | ||
90 | } | ||
91 | } | ||
92 | return(in != NULL); | ||
93 | } | ||
94 | |||
95 | int X509_set_issuer_name(X509 *x, X509_NAME *name) | ||
96 | { | ||
97 | if ((x == NULL) || (x->cert_info == NULL)) return(0); | ||
98 | return(X509_NAME_set(&x->cert_info->issuer,name)); | ||
99 | } | ||
100 | |||
101 | int X509_set_subject_name(X509 *x, X509_NAME *name) | ||
102 | { | ||
103 | if ((x == NULL) || (x->cert_info == NULL)) return(0); | ||
104 | return(X509_NAME_set(&x->cert_info->subject,name)); | ||
105 | } | ||
106 | |||
107 | int X509_set_notBefore(X509 *x, ASN1_TIME *tm) | ||
108 | { | ||
109 | ASN1_TIME *in; | ||
110 | |||
111 | if ((x == NULL) || (x->cert_info->validity == NULL)) return(0); | ||
112 | in=x->cert_info->validity->notBefore; | ||
113 | if (in != tm) | ||
114 | { | ||
115 | in=M_ASN1_TIME_dup(tm); | ||
116 | if (in != NULL) | ||
117 | { | ||
118 | M_ASN1_TIME_free(x->cert_info->validity->notBefore); | ||
119 | x->cert_info->validity->notBefore=in; | ||
120 | } | ||
121 | } | ||
122 | return(in != NULL); | ||
123 | } | ||
124 | |||
125 | int X509_set_notAfter(X509 *x, ASN1_TIME *tm) | ||
126 | { | ||
127 | ASN1_TIME *in; | ||
128 | |||
129 | if ((x == NULL) || (x->cert_info->validity == NULL)) return(0); | ||
130 | in=x->cert_info->validity->notAfter; | ||
131 | if (in != tm) | ||
132 | { | ||
133 | in=M_ASN1_TIME_dup(tm); | ||
134 | if (in != NULL) | ||
135 | { | ||
136 | M_ASN1_TIME_free(x->cert_info->validity->notAfter); | ||
137 | x->cert_info->validity->notAfter=in; | ||
138 | } | ||
139 | } | ||
140 | return(in != NULL); | ||
141 | } | ||
142 | |||
143 | int X509_set_pubkey(X509 *x, EVP_PKEY *pkey) | ||
144 | { | ||
145 | if ((x == NULL) || (x->cert_info == NULL)) return(0); | ||
146 | return(X509_PUBKEY_set(&(x->cert_info->key),pkey)); | ||
147 | } | ||
148 | |||
149 | |||
150 | |||
diff --git a/src/lib/libcrypto/x509/x509_trs.c b/src/lib/libcrypto/x509/x509_trs.c deleted file mode 100644 index 86b3b79dcc..0000000000 --- a/src/lib/libcrypto/x509/x509_trs.c +++ /dev/null | |||
@@ -1,267 +0,0 @@ | |||
1 | /* x509_trs.c */ | ||
2 | /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL | ||
3 | * project 1999. | ||
4 | */ | ||
5 | /* ==================================================================== | ||
6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | ||
7 | * | ||
8 | * Redistribution and use in source and binary forms, with or without | ||
9 | * modification, are permitted provided that the following conditions | ||
10 | * are met: | ||
11 | * | ||
12 | * 1. Redistributions of source code must retain the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer. | ||
14 | * | ||
15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
16 | * notice, this list of conditions and the following disclaimer in | ||
17 | * the documentation and/or other materials provided with the | ||
18 | * distribution. | ||
19 | * | ||
20 | * 3. All advertising materials mentioning features or use of this | ||
21 | * software must display the following acknowledgment: | ||
22 | * "This product includes software developed by the OpenSSL Project | ||
23 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
24 | * | ||
25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
26 | * endorse or promote products derived from this software without | ||
27 | * prior written permission. For written permission, please contact | ||
28 | * licensing@OpenSSL.org. | ||
29 | * | ||
30 | * 5. Products derived from this software may not be called "OpenSSL" | ||
31 | * nor may "OpenSSL" appear in their names without prior written | ||
32 | * permission of the OpenSSL Project. | ||
33 | * | ||
34 | * 6. Redistributions of any form whatsoever must retain the following | ||
35 | * acknowledgment: | ||
36 | * "This product includes software developed by the OpenSSL Project | ||
37 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
38 | * | ||
39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
50 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
51 | * ==================================================================== | ||
52 | * | ||
53 | * This product includes cryptographic software written by Eric Young | ||
54 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
55 | * Hudson (tjh@cryptsoft.com). | ||
56 | * | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/x509v3.h> | ||
62 | |||
63 | |||
64 | static int tr_cmp(const X509_TRUST * const *a, | ||
65 | const X509_TRUST * const *b); | ||
66 | static void trtable_free(X509_TRUST *p); | ||
67 | |||
68 | static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags); | ||
69 | static int trust_compat(X509_TRUST *trust, X509 *x, int flags); | ||
70 | |||
71 | static int obj_trust(int id, X509 *x, int flags); | ||
72 | static int (*default_trust)(int id, X509 *x, int flags) = obj_trust; | ||
73 | |||
74 | /* WARNING: the following table should be kept in order of trust | ||
75 | * and without any gaps so we can just subtract the minimum trust | ||
76 | * value to get an index into the table | ||
77 | */ | ||
78 | |||
79 | static X509_TRUST trstandard[] = { | ||
80 | {X509_TRUST_COMPAT, 0, trust_compat, "compatible", 0, NULL}, | ||
81 | {X509_TRUST_SSL_CLIENT, 0, trust_1oidany, "SSL Client", NID_client_auth, NULL}, | ||
82 | {X509_TRUST_SSL_SERVER, 0, trust_1oidany, "SSL Client", NID_server_auth, NULL}, | ||
83 | {X509_TRUST_EMAIL, 0, trust_1oidany, "S/MIME email", NID_email_protect, NULL}, | ||
84 | }; | ||
85 | |||
86 | #define X509_TRUST_COUNT (sizeof(trstandard)/sizeof(X509_TRUST)) | ||
87 | |||
88 | IMPLEMENT_STACK_OF(X509_TRUST) | ||
89 | |||
90 | static STACK_OF(X509_TRUST) *trtable = NULL; | ||
91 | |||
92 | static int tr_cmp(const X509_TRUST * const *a, | ||
93 | const X509_TRUST * const *b) | ||
94 | { | ||
95 | return (*a)->trust - (*b)->trust; | ||
96 | } | ||
97 | |||
98 | int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int) | ||
99 | { | ||
100 | int (*oldtrust)(int , X509 *, int); | ||
101 | oldtrust = default_trust; | ||
102 | default_trust = trust; | ||
103 | return oldtrust; | ||
104 | } | ||
105 | |||
106 | |||
107 | int X509_check_trust(X509 *x, int id, int flags) | ||
108 | { | ||
109 | X509_TRUST *pt; | ||
110 | int idx; | ||
111 | if(id == -1) return 1; | ||
112 | idx = X509_TRUST_get_by_id(id); | ||
113 | if(idx == -1) return default_trust(id, x, flags); | ||
114 | pt = X509_TRUST_get0(idx); | ||
115 | return pt->check_trust(pt, x, flags); | ||
116 | } | ||
117 | |||
118 | int X509_TRUST_get_count(void) | ||
119 | { | ||
120 | if(!trtable) return X509_TRUST_COUNT; | ||
121 | return sk_X509_TRUST_num(trtable) + X509_TRUST_COUNT; | ||
122 | } | ||
123 | |||
124 | X509_TRUST * X509_TRUST_get0(int idx) | ||
125 | { | ||
126 | if(idx < 0) return NULL; | ||
127 | if(idx < X509_TRUST_COUNT) return trstandard + idx; | ||
128 | return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT); | ||
129 | } | ||
130 | |||
131 | int X509_TRUST_get_by_id(int id) | ||
132 | { | ||
133 | X509_TRUST tmp; | ||
134 | int idx; | ||
135 | if((id >= X509_TRUST_MIN) && (id <= X509_TRUST_MAX)) | ||
136 | return id - X509_TRUST_MIN; | ||
137 | tmp.trust = id; | ||
138 | if(!trtable) return -1; | ||
139 | idx = sk_X509_TRUST_find(trtable, &tmp); | ||
140 | if(idx == -1) return -1; | ||
141 | return idx + X509_TRUST_COUNT; | ||
142 | } | ||
143 | |||
144 | int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int), | ||
145 | char *name, int arg1, void *arg2) | ||
146 | { | ||
147 | int idx; | ||
148 | X509_TRUST *trtmp; | ||
149 | /* This is set according to what we change: application can't set it */ | ||
150 | flags &= ~X509_TRUST_DYNAMIC; | ||
151 | /* This will always be set for application modified trust entries */ | ||
152 | flags |= X509_TRUST_DYNAMIC_NAME; | ||
153 | /* Get existing entry if any */ | ||
154 | idx = X509_TRUST_get_by_id(id); | ||
155 | /* Need a new entry */ | ||
156 | if(idx == -1) { | ||
157 | if(!(trtmp = OPENSSL_malloc(sizeof(X509_TRUST)))) { | ||
158 | X509err(X509_F_X509_TRUST_ADD,ERR_R_MALLOC_FAILURE); | ||
159 | return 0; | ||
160 | } | ||
161 | trtmp->flags = X509_TRUST_DYNAMIC; | ||
162 | } else trtmp = X509_TRUST_get0(idx); | ||
163 | |||
164 | /* OPENSSL_free existing name if dynamic */ | ||
165 | if(trtmp->flags & X509_TRUST_DYNAMIC_NAME) OPENSSL_free(trtmp->name); | ||
166 | /* dup supplied name */ | ||
167 | if(!(trtmp->name = BUF_strdup(name))) { | ||
168 | X509err(X509_F_X509_TRUST_ADD,ERR_R_MALLOC_FAILURE); | ||
169 | return 0; | ||
170 | } | ||
171 | /* Keep the dynamic flag of existing entry */ | ||
172 | trtmp->flags &= X509_TRUST_DYNAMIC; | ||
173 | /* Set all other flags */ | ||
174 | trtmp->flags |= flags; | ||
175 | |||
176 | trtmp->trust = id; | ||
177 | trtmp->check_trust = ck; | ||
178 | trtmp->arg1 = arg1; | ||
179 | trtmp->arg2 = arg2; | ||
180 | |||
181 | /* If its a new entry manage the dynamic table */ | ||
182 | if(idx == -1) { | ||
183 | if(!trtable && !(trtable = sk_X509_TRUST_new(tr_cmp))) { | ||
184 | X509err(X509_F_X509_TRUST_ADD,ERR_R_MALLOC_FAILURE); | ||
185 | return 0; | ||
186 | } | ||
187 | if (!sk_X509_TRUST_push(trtable, trtmp)) { | ||
188 | X509err(X509_F_X509_TRUST_ADD,ERR_R_MALLOC_FAILURE); | ||
189 | return 0; | ||
190 | } | ||
191 | } | ||
192 | return 1; | ||
193 | } | ||
194 | |||
195 | static void trtable_free(X509_TRUST *p) | ||
196 | { | ||
197 | if(!p) return; | ||
198 | if (p->flags & X509_TRUST_DYNAMIC) | ||
199 | { | ||
200 | if (p->flags & X509_TRUST_DYNAMIC_NAME) | ||
201 | OPENSSL_free(p->name); | ||
202 | OPENSSL_free(p); | ||
203 | } | ||
204 | } | ||
205 | |||
206 | void X509_TRUST_cleanup(void) | ||
207 | { | ||
208 | int i; | ||
209 | for(i = 0; i < X509_TRUST_COUNT; i++) trtable_free(trstandard + i); | ||
210 | sk_X509_TRUST_pop_free(trtable, trtable_free); | ||
211 | trtable = NULL; | ||
212 | } | ||
213 | |||
214 | int X509_TRUST_get_flags(X509_TRUST *xp) | ||
215 | { | ||
216 | return xp->flags; | ||
217 | } | ||
218 | |||
219 | char *X509_TRUST_get0_name(X509_TRUST *xp) | ||
220 | { | ||
221 | return xp->name; | ||
222 | } | ||
223 | |||
224 | int X509_TRUST_get_trust(X509_TRUST *xp) | ||
225 | { | ||
226 | return xp->trust; | ||
227 | } | ||
228 | |||
229 | static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags) | ||
230 | { | ||
231 | if(x->aux && (x->aux->trust || x->aux->reject)) | ||
232 | return obj_trust(trust->arg1, x, flags); | ||
233 | /* we don't have any trust settings: for compatibility | ||
234 | * we return trusted if it is self signed | ||
235 | */ | ||
236 | return trust_compat(trust, x, flags); | ||
237 | } | ||
238 | |||
239 | static int trust_compat(X509_TRUST *trust, X509 *x, int flags) | ||
240 | { | ||
241 | X509_check_purpose(x, -1, 0); | ||
242 | if(x->ex_flags & EXFLAG_SS) return X509_TRUST_TRUSTED; | ||
243 | else return X509_TRUST_UNTRUSTED; | ||
244 | } | ||
245 | |||
246 | static int obj_trust(int id, X509 *x, int flags) | ||
247 | { | ||
248 | ASN1_OBJECT *obj; | ||
249 | int i; | ||
250 | X509_CERT_AUX *ax; | ||
251 | ax = x->aux; | ||
252 | if(!ax) return X509_TRUST_UNTRUSTED; | ||
253 | if(ax->reject) { | ||
254 | for(i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) { | ||
255 | obj = sk_ASN1_OBJECT_value(ax->reject, i); | ||
256 | if(OBJ_obj2nid(obj) == id) return X509_TRUST_REJECTED; | ||
257 | } | ||
258 | } | ||
259 | if(ax->trust) { | ||
260 | for(i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) { | ||
261 | obj = sk_ASN1_OBJECT_value(ax->trust, i); | ||
262 | if(OBJ_obj2nid(obj) == id) return X509_TRUST_TRUSTED; | ||
263 | } | ||
264 | } | ||
265 | return X509_TRUST_UNTRUSTED; | ||
266 | } | ||
267 | |||
diff --git a/src/lib/libcrypto/x509/x509_txt.c b/src/lib/libcrypto/x509/x509_txt.c deleted file mode 100644 index cfb478d4bc..0000000000 --- a/src/lib/libcrypto/x509/x509_txt.c +++ /dev/null | |||
@@ -1,150 +0,0 @@ | |||
1 | /* crypto/x509/x509_txt.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <time.h> | ||
61 | #include <errno.h> | ||
62 | |||
63 | #include "cryptlib.h" | ||
64 | #include <openssl/lhash.h> | ||
65 | #include <openssl/buffer.h> | ||
66 | #include <openssl/evp.h> | ||
67 | #include <openssl/asn1.h> | ||
68 | #include <openssl/x509.h> | ||
69 | #include <openssl/objects.h> | ||
70 | |||
71 | const char *X509_verify_cert_error_string(long n) | ||
72 | { | ||
73 | static char buf[100]; | ||
74 | |||
75 | switch ((int)n) | ||
76 | { | ||
77 | case X509_V_OK: | ||
78 | return("ok"); | ||
79 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: | ||
80 | return("unable to get issuer certificate"); | ||
81 | case X509_V_ERR_UNABLE_TO_GET_CRL: | ||
82 | return("unable to get certificate CRL"); | ||
83 | case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE: | ||
84 | return("unable to decrypt certificate's signature"); | ||
85 | case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE: | ||
86 | return("unable to decrypt CRL's's signature"); | ||
87 | case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY: | ||
88 | return("unable to decode issuer public key"); | ||
89 | case X509_V_ERR_CERT_SIGNATURE_FAILURE: | ||
90 | return("certificate signature failure"); | ||
91 | case X509_V_ERR_CRL_SIGNATURE_FAILURE: | ||
92 | return("CRL signature failure"); | ||
93 | case X509_V_ERR_CERT_NOT_YET_VALID: | ||
94 | return("certificate is not yet valid"); | ||
95 | case X509_V_ERR_CRL_NOT_YET_VALID: | ||
96 | return("CRL is not yet valid"); | ||
97 | case X509_V_ERR_CERT_HAS_EXPIRED: | ||
98 | return("Certificate has expired"); | ||
99 | case X509_V_ERR_CRL_HAS_EXPIRED: | ||
100 | return("CRL has expired"); | ||
101 | case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD: | ||
102 | return("format error in certificate's notBefore field"); | ||
103 | case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD: | ||
104 | return("format error in certificate's notAfter field"); | ||
105 | case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD: | ||
106 | return("format error in CRL's lastUpdate field"); | ||
107 | case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD: | ||
108 | return("format error in CRL's nextUpdate field"); | ||
109 | case X509_V_ERR_OUT_OF_MEM: | ||
110 | return("out of memory"); | ||
111 | case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: | ||
112 | return("self signed certificate"); | ||
113 | case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN: | ||
114 | return("self signed certificate in certificate chain"); | ||
115 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY: | ||
116 | return("unable to get local issuer certificate"); | ||
117 | case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE: | ||
118 | return("unable to verify the first certificate"); | ||
119 | case X509_V_ERR_CERT_CHAIN_TOO_LONG: | ||
120 | return("certificate chain too long"); | ||
121 | case X509_V_ERR_CERT_REVOKED: | ||
122 | return("certificate revoked"); | ||
123 | case X509_V_ERR_INVALID_CA: | ||
124 | return ("invalid CA certificate"); | ||
125 | case X509_V_ERR_PATH_LENGTH_EXCEEDED: | ||
126 | return ("path length constraint exceeded"); | ||
127 | case X509_V_ERR_INVALID_PURPOSE: | ||
128 | return ("unsupported certificate purpose"); | ||
129 | case X509_V_ERR_CERT_UNTRUSTED: | ||
130 | return ("certificate not trusted"); | ||
131 | case X509_V_ERR_CERT_REJECTED: | ||
132 | return ("certificate rejected"); | ||
133 | case X509_V_ERR_APPLICATION_VERIFICATION: | ||
134 | return("application verification failure"); | ||
135 | case X509_V_ERR_SUBJECT_ISSUER_MISMATCH: | ||
136 | return("subject issuer mismatch"); | ||
137 | case X509_V_ERR_AKID_SKID_MISMATCH: | ||
138 | return("authority and subject key identifier mismatch"); | ||
139 | case X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH: | ||
140 | return("authority and issuer serial number mismatch"); | ||
141 | case X509_V_ERR_KEYUSAGE_NO_CERTSIGN: | ||
142 | return("key usage does not include certificate signing"); | ||
143 | |||
144 | default: | ||
145 | sprintf(buf,"error number %ld",n); | ||
146 | return(buf); | ||
147 | } | ||
148 | } | ||
149 | |||
150 | |||
diff --git a/src/lib/libcrypto/x509/x509_v3.c b/src/lib/libcrypto/x509/x509_v3.c deleted file mode 100644 index 52887986fe..0000000000 --- a/src/lib/libcrypto/x509/x509_v3.c +++ /dev/null | |||
@@ -1,267 +0,0 @@ | |||
1 | /* crypto/x509/x509_v3.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <openssl/stack.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/objects.h> | ||
64 | #include <openssl/evp.h> | ||
65 | #include <openssl/x509.h> | ||
66 | #include <openssl/x509v3.h> | ||
67 | |||
68 | int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x) | ||
69 | { | ||
70 | if (x == NULL) return(0); | ||
71 | return(sk_X509_EXTENSION_num(x)); | ||
72 | } | ||
73 | |||
74 | int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid, | ||
75 | int lastpos) | ||
76 | { | ||
77 | ASN1_OBJECT *obj; | ||
78 | |||
79 | obj=OBJ_nid2obj(nid); | ||
80 | if (obj == NULL) return(-2); | ||
81 | return(X509v3_get_ext_by_OBJ(x,obj,lastpos)); | ||
82 | } | ||
83 | |||
84 | int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk, ASN1_OBJECT *obj, | ||
85 | int lastpos) | ||
86 | { | ||
87 | int n; | ||
88 | X509_EXTENSION *ex; | ||
89 | |||
90 | if (sk == NULL) return(-1); | ||
91 | lastpos++; | ||
92 | if (lastpos < 0) | ||
93 | lastpos=0; | ||
94 | n=sk_X509_EXTENSION_num(sk); | ||
95 | for ( ; lastpos < n; lastpos++) | ||
96 | { | ||
97 | ex=sk_X509_EXTENSION_value(sk,lastpos); | ||
98 | if (OBJ_cmp(ex->object,obj) == 0) | ||
99 | return(lastpos); | ||
100 | } | ||
101 | return(-1); | ||
102 | } | ||
103 | |||
104 | int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit, | ||
105 | int lastpos) | ||
106 | { | ||
107 | int n; | ||
108 | X509_EXTENSION *ex; | ||
109 | |||
110 | if (sk == NULL) return(-1); | ||
111 | lastpos++; | ||
112 | if (lastpos < 0) | ||
113 | lastpos=0; | ||
114 | n=sk_X509_EXTENSION_num(sk); | ||
115 | for ( ; lastpos < n; lastpos++) | ||
116 | { | ||
117 | ex=sk_X509_EXTENSION_value(sk,lastpos); | ||
118 | if ( (ex->critical && crit) || | ||
119 | (!ex->critical && !crit)) | ||
120 | return(lastpos); | ||
121 | } | ||
122 | return(-1); | ||
123 | } | ||
124 | |||
125 | X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc) | ||
126 | { | ||
127 | if (x == NULL || sk_X509_EXTENSION_num(x) <= loc || loc < 0) | ||
128 | return NULL; | ||
129 | else | ||
130 | return sk_X509_EXTENSION_value(x,loc); | ||
131 | } | ||
132 | |||
133 | X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc) | ||
134 | { | ||
135 | X509_EXTENSION *ret; | ||
136 | |||
137 | if (x == NULL || sk_X509_EXTENSION_num(x) <= loc || loc < 0) | ||
138 | return(NULL); | ||
139 | ret=sk_X509_EXTENSION_delete(x,loc); | ||
140 | return(ret); | ||
141 | } | ||
142 | |||
143 | STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x, | ||
144 | X509_EXTENSION *ex, int loc) | ||
145 | { | ||
146 | X509_EXTENSION *new_ex=NULL; | ||
147 | int n; | ||
148 | STACK_OF(X509_EXTENSION) *sk=NULL; | ||
149 | |||
150 | if ((x != NULL) && (*x == NULL)) | ||
151 | { | ||
152 | if ((sk=sk_X509_EXTENSION_new_null()) == NULL) | ||
153 | goto err; | ||
154 | } | ||
155 | else | ||
156 | sk= *x; | ||
157 | |||
158 | n=sk_X509_EXTENSION_num(sk); | ||
159 | if (loc > n) loc=n; | ||
160 | else if (loc < 0) loc=n; | ||
161 | |||
162 | if ((new_ex=X509_EXTENSION_dup(ex)) == NULL) | ||
163 | goto err2; | ||
164 | if (!sk_X509_EXTENSION_insert(sk,new_ex,loc)) | ||
165 | goto err; | ||
166 | if ((x != NULL) && (*x == NULL)) | ||
167 | *x=sk; | ||
168 | return(sk); | ||
169 | err: | ||
170 | X509err(X509_F_X509V3_ADD_EXT,ERR_R_MALLOC_FAILURE); | ||
171 | err2: | ||
172 | if (new_ex != NULL) X509_EXTENSION_free(new_ex); | ||
173 | if (sk != NULL) sk_X509_EXTENSION_free(sk); | ||
174 | return(NULL); | ||
175 | } | ||
176 | |||
177 | X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, | ||
178 | int crit, ASN1_OCTET_STRING *data) | ||
179 | { | ||
180 | ASN1_OBJECT *obj; | ||
181 | X509_EXTENSION *ret; | ||
182 | |||
183 | obj=OBJ_nid2obj(nid); | ||
184 | if (obj == NULL) | ||
185 | { | ||
186 | X509err(X509_F_X509_EXTENSION_CREATE_BY_NID,X509_R_UNKNOWN_NID); | ||
187 | return(NULL); | ||
188 | } | ||
189 | ret=X509_EXTENSION_create_by_OBJ(ex,obj,crit,data); | ||
190 | if (ret == NULL) ASN1_OBJECT_free(obj); | ||
191 | return(ret); | ||
192 | } | ||
193 | |||
194 | X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, | ||
195 | ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) | ||
196 | { | ||
197 | X509_EXTENSION *ret; | ||
198 | |||
199 | if ((ex == NULL) || (*ex == NULL)) | ||
200 | { | ||
201 | if ((ret=X509_EXTENSION_new()) == NULL) | ||
202 | { | ||
203 | X509err(X509_F_X509_EXTENSION_CREATE_BY_OBJ,ERR_R_MALLOC_FAILURE); | ||
204 | return(NULL); | ||
205 | } | ||
206 | } | ||
207 | else | ||
208 | ret= *ex; | ||
209 | |||
210 | if (!X509_EXTENSION_set_object(ret,obj)) | ||
211 | goto err; | ||
212 | if (!X509_EXTENSION_set_critical(ret,crit)) | ||
213 | goto err; | ||
214 | if (!X509_EXTENSION_set_data(ret,data)) | ||
215 | goto err; | ||
216 | |||
217 | if ((ex != NULL) && (*ex == NULL)) *ex=ret; | ||
218 | return(ret); | ||
219 | err: | ||
220 | if ((ex == NULL) || (ret != *ex)) | ||
221 | X509_EXTENSION_free(ret); | ||
222 | return(NULL); | ||
223 | } | ||
224 | |||
225 | int X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj) | ||
226 | { | ||
227 | if ((ex == NULL) || (obj == NULL)) | ||
228 | return(0); | ||
229 | ASN1_OBJECT_free(ex->object); | ||
230 | ex->object=OBJ_dup(obj); | ||
231 | return(1); | ||
232 | } | ||
233 | |||
234 | int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) | ||
235 | { | ||
236 | if (ex == NULL) return(0); | ||
237 | ex->critical=(crit)?0xFF:0; | ||
238 | return(1); | ||
239 | } | ||
240 | |||
241 | int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) | ||
242 | { | ||
243 | int i; | ||
244 | |||
245 | if (ex == NULL) return(0); | ||
246 | i=M_ASN1_OCTET_STRING_set(ex->value,data->data,data->length); | ||
247 | if (!i) return(0); | ||
248 | return(1); | ||
249 | } | ||
250 | |||
251 | ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex) | ||
252 | { | ||
253 | if (ex == NULL) return(NULL); | ||
254 | return(ex->object); | ||
255 | } | ||
256 | |||
257 | ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ex) | ||
258 | { | ||
259 | if (ex == NULL) return(NULL); | ||
260 | return(ex->value); | ||
261 | } | ||
262 | |||
263 | int X509_EXTENSION_get_critical(X509_EXTENSION *ex) | ||
264 | { | ||
265 | if (ex == NULL) return(0); | ||
266 | return(ex->critical); | ||
267 | } | ||
diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c deleted file mode 100644 index 0f4110cc64..0000000000 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ /dev/null | |||
@@ -1,920 +0,0 @@ | |||
1 | /* crypto/x509/x509_vfy.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <time.h> | ||
61 | #include <errno.h> | ||
62 | |||
63 | #include "cryptlib.h" | ||
64 | #include <openssl/crypto.h> | ||
65 | #include <openssl/lhash.h> | ||
66 | #include <openssl/buffer.h> | ||
67 | #include <openssl/evp.h> | ||
68 | #include <openssl/asn1.h> | ||
69 | #include <openssl/x509.h> | ||
70 | #include <openssl/x509v3.h> | ||
71 | #include <openssl/objects.h> | ||
72 | |||
73 | static int null_callback(int ok,X509_STORE_CTX *e); | ||
74 | static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); | ||
75 | static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x); | ||
76 | static int check_chain_purpose(X509_STORE_CTX *ctx); | ||
77 | static int check_trust(X509_STORE_CTX *ctx); | ||
78 | static int internal_verify(X509_STORE_CTX *ctx); | ||
79 | const char *X509_version="X.509" OPENSSL_VERSION_PTEXT; | ||
80 | |||
81 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *x509_store_ctx_method=NULL; | ||
82 | static int x509_store_ctx_num=0; | ||
83 | #if 0 | ||
84 | static int x509_store_num=1; | ||
85 | static STACK *x509_store_method=NULL; | ||
86 | #endif | ||
87 | |||
88 | static int null_callback(int ok, X509_STORE_CTX *e) | ||
89 | { | ||
90 | return ok; | ||
91 | } | ||
92 | |||
93 | #if 0 | ||
94 | static int x509_subject_cmp(X509 **a, X509 **b) | ||
95 | { | ||
96 | return X509_subject_name_cmp(*a,*b); | ||
97 | } | ||
98 | #endif | ||
99 | |||
100 | int X509_verify_cert(X509_STORE_CTX *ctx) | ||
101 | { | ||
102 | X509 *x,*xtmp,*chain_ss=NULL; | ||
103 | X509_NAME *xn; | ||
104 | int depth,i,ok=0; | ||
105 | int num; | ||
106 | int (*cb)(); | ||
107 | STACK_OF(X509) *sktmp=NULL; | ||
108 | |||
109 | if (ctx->cert == NULL) | ||
110 | { | ||
111 | X509err(X509_F_X509_VERIFY_CERT,X509_R_NO_CERT_SET_FOR_US_TO_VERIFY); | ||
112 | return -1; | ||
113 | } | ||
114 | |||
115 | cb=ctx->verify_cb; | ||
116 | if (cb == NULL) cb=null_callback; | ||
117 | |||
118 | /* first we make sure the chain we are going to build is | ||
119 | * present and that the first entry is in place */ | ||
120 | if (ctx->chain == NULL) | ||
121 | { | ||
122 | if ( ((ctx->chain=sk_X509_new_null()) == NULL) || | ||
123 | (!sk_X509_push(ctx->chain,ctx->cert))) | ||
124 | { | ||
125 | X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE); | ||
126 | goto end; | ||
127 | } | ||
128 | CRYPTO_add(&ctx->cert->references,1,CRYPTO_LOCK_X509); | ||
129 | ctx->last_untrusted=1; | ||
130 | } | ||
131 | |||
132 | /* We use a temporary STACK so we can chop and hack at it */ | ||
133 | if (ctx->untrusted != NULL | ||
134 | && (sktmp=sk_X509_dup(ctx->untrusted)) == NULL) | ||
135 | { | ||
136 | X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE); | ||
137 | goto end; | ||
138 | } | ||
139 | |||
140 | num=sk_X509_num(ctx->chain); | ||
141 | x=sk_X509_value(ctx->chain,num-1); | ||
142 | depth=ctx->depth; | ||
143 | |||
144 | |||
145 | for (;;) | ||
146 | { | ||
147 | /* If we have enough, we break */ | ||
148 | if (depth < num) break; /* FIXME: If this happens, we should take | ||
149 | * note of it and, if appropriate, use the | ||
150 | * X509_V_ERR_CERT_CHAIN_TOO_LONG error | ||
151 | * code later. | ||
152 | */ | ||
153 | |||
154 | /* If we are self signed, we break */ | ||
155 | xn=X509_get_issuer_name(x); | ||
156 | if (ctx->check_issued(ctx, x,x)) break; | ||
157 | |||
158 | /* If we were passed a cert chain, use it first */ | ||
159 | if (ctx->untrusted != NULL) | ||
160 | { | ||
161 | xtmp=find_issuer(ctx, sktmp,x); | ||
162 | if (xtmp != NULL) | ||
163 | { | ||
164 | if (!sk_X509_push(ctx->chain,xtmp)) | ||
165 | { | ||
166 | X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE); | ||
167 | goto end; | ||
168 | } | ||
169 | CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509); | ||
170 | sk_X509_delete_ptr(sktmp,xtmp); | ||
171 | ctx->last_untrusted++; | ||
172 | x=xtmp; | ||
173 | num++; | ||
174 | /* reparse the full chain for | ||
175 | * the next one */ | ||
176 | continue; | ||
177 | } | ||
178 | } | ||
179 | break; | ||
180 | } | ||
181 | |||
182 | /* at this point, chain should contain a list of untrusted | ||
183 | * certificates. We now need to add at least one trusted one, | ||
184 | * if possible, otherwise we complain. */ | ||
185 | |||
186 | /* Examine last certificate in chain and see if it | ||
187 | * is self signed. | ||
188 | */ | ||
189 | |||
190 | i=sk_X509_num(ctx->chain); | ||
191 | x=sk_X509_value(ctx->chain,i-1); | ||
192 | xn = X509_get_subject_name(x); | ||
193 | if (ctx->check_issued(ctx, x, x)) | ||
194 | { | ||
195 | /* we have a self signed certificate */ | ||
196 | if (sk_X509_num(ctx->chain) == 1) | ||
197 | { | ||
198 | /* We have a single self signed certificate: see if | ||
199 | * we can find it in the store. We must have an exact | ||
200 | * match to avoid possible impersonation. | ||
201 | */ | ||
202 | ok = ctx->get_issuer(&xtmp, ctx, x); | ||
203 | if ((ok <= 0) || X509_cmp(x, xtmp)) | ||
204 | { | ||
205 | ctx->error=X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT; | ||
206 | ctx->current_cert=x; | ||
207 | ctx->error_depth=i-1; | ||
208 | if (ok == 1) X509_free(xtmp); | ||
209 | ok=cb(0,ctx); | ||
210 | if (!ok) goto end; | ||
211 | } | ||
212 | else | ||
213 | { | ||
214 | /* We have a match: replace certificate with store version | ||
215 | * so we get any trust settings. | ||
216 | */ | ||
217 | X509_free(x); | ||
218 | x = xtmp; | ||
219 | sk_X509_set(ctx->chain, i - 1, x); | ||
220 | ctx->last_untrusted=0; | ||
221 | } | ||
222 | } | ||
223 | else | ||
224 | { | ||
225 | /* extract and save self signed certificate for later use */ | ||
226 | chain_ss=sk_X509_pop(ctx->chain); | ||
227 | ctx->last_untrusted--; | ||
228 | num--; | ||
229 | x=sk_X509_value(ctx->chain,num-1); | ||
230 | } | ||
231 | } | ||
232 | |||
233 | /* We now lookup certs from the certificate store */ | ||
234 | for (;;) | ||
235 | { | ||
236 | /* If we have enough, we break */ | ||
237 | if (depth < num) break; | ||
238 | |||
239 | /* If we are self signed, we break */ | ||
240 | xn=X509_get_issuer_name(x); | ||
241 | if (ctx->check_issued(ctx,x,x)) break; | ||
242 | |||
243 | ok = ctx->get_issuer(&xtmp, ctx, x); | ||
244 | |||
245 | if (ok < 0) return ok; | ||
246 | if (ok == 0) break; | ||
247 | |||
248 | x = xtmp; | ||
249 | if (!sk_X509_push(ctx->chain,x)) | ||
250 | { | ||
251 | X509_free(xtmp); | ||
252 | X509err(X509_F_X509_VERIFY_CERT,ERR_R_MALLOC_FAILURE); | ||
253 | return 0; | ||
254 | } | ||
255 | num++; | ||
256 | } | ||
257 | |||
258 | /* we now have our chain, lets check it... */ | ||
259 | xn=X509_get_issuer_name(x); | ||
260 | |||
261 | /* Is last certificate looked up self signed? */ | ||
262 | if (!ctx->check_issued(ctx,x,x)) | ||
263 | { | ||
264 | if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss)) | ||
265 | { | ||
266 | if (ctx->last_untrusted >= num) | ||
267 | ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY; | ||
268 | else | ||
269 | ctx->error=X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT; | ||
270 | ctx->current_cert=x; | ||
271 | } | ||
272 | else | ||
273 | { | ||
274 | |||
275 | sk_X509_push(ctx->chain,chain_ss); | ||
276 | num++; | ||
277 | ctx->last_untrusted=num; | ||
278 | ctx->current_cert=chain_ss; | ||
279 | ctx->error=X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN; | ||
280 | chain_ss=NULL; | ||
281 | } | ||
282 | |||
283 | ctx->error_depth=num-1; | ||
284 | ok=cb(0,ctx); | ||
285 | if (!ok) goto end; | ||
286 | } | ||
287 | |||
288 | /* We have the chain complete: now we need to check its purpose */ | ||
289 | if (ctx->purpose > 0) ok = check_chain_purpose(ctx); | ||
290 | |||
291 | if (!ok) goto end; | ||
292 | |||
293 | /* The chain extensions are OK: check trust */ | ||
294 | |||
295 | if (ctx->trust > 0) ok = check_trust(ctx); | ||
296 | |||
297 | if (!ok) goto end; | ||
298 | |||
299 | /* We may as well copy down any DSA parameters that are required */ | ||
300 | X509_get_pubkey_parameters(NULL,ctx->chain); | ||
301 | |||
302 | /* At this point, we have a chain and just need to verify it */ | ||
303 | if (ctx->verify != NULL) | ||
304 | ok=ctx->verify(ctx); | ||
305 | else | ||
306 | ok=internal_verify(ctx); | ||
307 | if (0) | ||
308 | { | ||
309 | end: | ||
310 | X509_get_pubkey_parameters(NULL,ctx->chain); | ||
311 | } | ||
312 | if (sktmp != NULL) sk_X509_free(sktmp); | ||
313 | if (chain_ss != NULL) X509_free(chain_ss); | ||
314 | return ok; | ||
315 | } | ||
316 | |||
317 | |||
318 | /* Given a STACK_OF(X509) find the issuer of cert (if any) | ||
319 | */ | ||
320 | |||
321 | static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x) | ||
322 | { | ||
323 | int i; | ||
324 | X509 *issuer; | ||
325 | for (i = 0; i < sk_X509_num(sk); i++) | ||
326 | { | ||
327 | issuer = sk_X509_value(sk, i); | ||
328 | if (ctx->check_issued(ctx, x, issuer)) | ||
329 | return issuer; | ||
330 | } | ||
331 | return NULL; | ||
332 | } | ||
333 | |||
334 | /* Given a possible certificate and issuer check them */ | ||
335 | |||
336 | static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer) | ||
337 | { | ||
338 | int ret; | ||
339 | ret = X509_check_issued(issuer, x); | ||
340 | if (ret == X509_V_OK) | ||
341 | return 1; | ||
342 | /* If we haven't asked for issuer errors don't set ctx */ | ||
343 | if (!(ctx->flags & X509_V_FLAG_CB_ISSUER_CHECK)) | ||
344 | return 0; | ||
345 | |||
346 | ctx->error = ret; | ||
347 | ctx->current_cert = x; | ||
348 | ctx->current_issuer = issuer; | ||
349 | if (ctx->verify_cb) | ||
350 | return ctx->verify_cb(0, ctx); | ||
351 | return 0; | ||
352 | } | ||
353 | |||
354 | /* Alternative lookup method: look from a STACK stored in other_ctx */ | ||
355 | |||
356 | static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x) | ||
357 | { | ||
358 | *issuer = find_issuer(ctx, ctx->other_ctx, x); | ||
359 | if (*issuer) | ||
360 | { | ||
361 | CRYPTO_add(&(*issuer)->references,1,CRYPTO_LOCK_X509); | ||
362 | return 1; | ||
363 | } | ||
364 | else | ||
365 | return 0; | ||
366 | } | ||
367 | |||
368 | |||
369 | /* Check a certificate chains extensions for consistency | ||
370 | * with the supplied purpose | ||
371 | */ | ||
372 | |||
373 | static int check_chain_purpose(X509_STORE_CTX *ctx) | ||
374 | { | ||
375 | #ifdef NO_CHAIN_VERIFY | ||
376 | return 1; | ||
377 | #else | ||
378 | int i, ok=0; | ||
379 | X509 *x; | ||
380 | int (*cb)(); | ||
381 | cb=ctx->verify_cb; | ||
382 | if (cb == NULL) cb=null_callback; | ||
383 | /* Check all untrusted certificates */ | ||
384 | for (i = 0; i < ctx->last_untrusted; i++) | ||
385 | { | ||
386 | x = sk_X509_value(ctx->chain, i); | ||
387 | if (!X509_check_purpose(x, ctx->purpose, i)) | ||
388 | { | ||
389 | if (i) | ||
390 | ctx->error = X509_V_ERR_INVALID_CA; | ||
391 | else | ||
392 | ctx->error = X509_V_ERR_INVALID_PURPOSE; | ||
393 | ctx->error_depth = i; | ||
394 | ctx->current_cert = x; | ||
395 | ok=cb(0,ctx); | ||
396 | if (!ok) goto end; | ||
397 | } | ||
398 | /* Check pathlen */ | ||
399 | if ((i > 1) && (x->ex_pathlen != -1) | ||
400 | && (i > (x->ex_pathlen + 1))) | ||
401 | { | ||
402 | ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED; | ||
403 | ctx->error_depth = i; | ||
404 | ctx->current_cert = x; | ||
405 | ok=cb(0,ctx); | ||
406 | if (!ok) goto end; | ||
407 | } | ||
408 | } | ||
409 | ok = 1; | ||
410 | end: | ||
411 | return ok; | ||
412 | #endif | ||
413 | } | ||
414 | |||
415 | static int check_trust(X509_STORE_CTX *ctx) | ||
416 | { | ||
417 | #ifdef NO_CHAIN_VERIFY | ||
418 | return 1; | ||
419 | #else | ||
420 | int i, ok; | ||
421 | X509 *x; | ||
422 | int (*cb)(); | ||
423 | cb=ctx->verify_cb; | ||
424 | if (cb == NULL) cb=null_callback; | ||
425 | /* For now just check the last certificate in the chain */ | ||
426 | i = sk_X509_num(ctx->chain) - 1; | ||
427 | x = sk_X509_value(ctx->chain, i); | ||
428 | ok = X509_check_trust(x, ctx->trust, 0); | ||
429 | if (ok == X509_TRUST_TRUSTED) | ||
430 | return 1; | ||
431 | ctx->error_depth = sk_X509_num(ctx->chain) - 1; | ||
432 | ctx->current_cert = x; | ||
433 | if (ok == X509_TRUST_REJECTED) | ||
434 | ctx->error = X509_V_ERR_CERT_REJECTED; | ||
435 | else | ||
436 | ctx->error = X509_V_ERR_CERT_UNTRUSTED; | ||
437 | ok = cb(0, ctx); | ||
438 | return ok; | ||
439 | #endif | ||
440 | } | ||
441 | |||
442 | static int internal_verify(X509_STORE_CTX *ctx) | ||
443 | { | ||
444 | int i,ok=0,n; | ||
445 | X509 *xs,*xi; | ||
446 | EVP_PKEY *pkey=NULL; | ||
447 | time_t *ptime; | ||
448 | int (*cb)(); | ||
449 | |||
450 | cb=ctx->verify_cb; | ||
451 | if (cb == NULL) cb=null_callback; | ||
452 | |||
453 | n=sk_X509_num(ctx->chain); | ||
454 | ctx->error_depth=n-1; | ||
455 | n--; | ||
456 | xi=sk_X509_value(ctx->chain,n); | ||
457 | if (ctx->flags & X509_V_FLAG_USE_CHECK_TIME) | ||
458 | ptime = &ctx->check_time; | ||
459 | else | ||
460 | ptime = NULL; | ||
461 | if (ctx->check_issued(ctx, xi, xi)) | ||
462 | xs=xi; | ||
463 | else | ||
464 | { | ||
465 | if (n <= 0) | ||
466 | { | ||
467 | ctx->error=X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE; | ||
468 | ctx->current_cert=xi; | ||
469 | ok=cb(0,ctx); | ||
470 | goto end; | ||
471 | } | ||
472 | else | ||
473 | { | ||
474 | n--; | ||
475 | ctx->error_depth=n; | ||
476 | xs=sk_X509_value(ctx->chain,n); | ||
477 | } | ||
478 | } | ||
479 | |||
480 | /* ctx->error=0; not needed */ | ||
481 | while (n >= 0) | ||
482 | { | ||
483 | ctx->error_depth=n; | ||
484 | if (!xs->valid) | ||
485 | { | ||
486 | if ((pkey=X509_get_pubkey(xi)) == NULL) | ||
487 | { | ||
488 | ctx->error=X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY; | ||
489 | ctx->current_cert=xi; | ||
490 | ok=(*cb)(0,ctx); | ||
491 | if (!ok) goto end; | ||
492 | } | ||
493 | if (X509_verify(xs,pkey) <= 0) | ||
494 | { | ||
495 | ctx->error=X509_V_ERR_CERT_SIGNATURE_FAILURE; | ||
496 | ctx->current_cert=xs; | ||
497 | ok=(*cb)(0,ctx); | ||
498 | if (!ok) | ||
499 | { | ||
500 | EVP_PKEY_free(pkey); | ||
501 | goto end; | ||
502 | } | ||
503 | } | ||
504 | EVP_PKEY_free(pkey); | ||
505 | pkey=NULL; | ||
506 | |||
507 | i=X509_cmp_time(X509_get_notBefore(xs), ptime); | ||
508 | if (i == 0) | ||
509 | { | ||
510 | ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD; | ||
511 | ctx->current_cert=xs; | ||
512 | ok=(*cb)(0,ctx); | ||
513 | if (!ok) goto end; | ||
514 | } | ||
515 | if (i > 0) | ||
516 | { | ||
517 | ctx->error=X509_V_ERR_CERT_NOT_YET_VALID; | ||
518 | ctx->current_cert=xs; | ||
519 | ok=(*cb)(0,ctx); | ||
520 | if (!ok) goto end; | ||
521 | } | ||
522 | xs->valid=1; | ||
523 | } | ||
524 | |||
525 | i=X509_cmp_time(X509_get_notAfter(xs), ptime); | ||
526 | if (i == 0) | ||
527 | { | ||
528 | ctx->error=X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD; | ||
529 | ctx->current_cert=xs; | ||
530 | ok=(*cb)(0,ctx); | ||
531 | if (!ok) goto end; | ||
532 | } | ||
533 | |||
534 | if (i < 0) | ||
535 | { | ||
536 | ctx->error=X509_V_ERR_CERT_HAS_EXPIRED; | ||
537 | ctx->current_cert=xs; | ||
538 | ok=(*cb)(0,ctx); | ||
539 | if (!ok) goto end; | ||
540 | } | ||
541 | |||
542 | /* CRL CHECK */ | ||
543 | |||
544 | /* The last error (if any) is still in the error value */ | ||
545 | ctx->current_cert=xs; | ||
546 | ok=(*cb)(1,ctx); | ||
547 | if (!ok) goto end; | ||
548 | |||
549 | n--; | ||
550 | if (n >= 0) | ||
551 | { | ||
552 | xi=xs; | ||
553 | xs=sk_X509_value(ctx->chain,n); | ||
554 | } | ||
555 | } | ||
556 | ok=1; | ||
557 | end: | ||
558 | return ok; | ||
559 | } | ||
560 | |||
561 | int X509_cmp_current_time(ASN1_TIME *ctm) | ||
562 | { | ||
563 | return X509_cmp_time(ctm, NULL); | ||
564 | } | ||
565 | |||
566 | int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time) | ||
567 | { | ||
568 | char *str; | ||
569 | ASN1_TIME atm; | ||
570 | time_t offset; | ||
571 | char buff1[24],buff2[24],*p; | ||
572 | int i,j; | ||
573 | |||
574 | p=buff1; | ||
575 | i=ctm->length; | ||
576 | str=(char *)ctm->data; | ||
577 | if (ctm->type == V_ASN1_UTCTIME) | ||
578 | { | ||
579 | if ((i < 11) || (i > 17)) return 0; | ||
580 | memcpy(p,str,10); | ||
581 | p+=10; | ||
582 | str+=10; | ||
583 | } | ||
584 | else | ||
585 | { | ||
586 | if (i < 13) return 0; | ||
587 | memcpy(p,str,12); | ||
588 | p+=12; | ||
589 | str+=12; | ||
590 | } | ||
591 | |||
592 | if ((*str == 'Z') || (*str == '-') || (*str == '+')) | ||
593 | { *(p++)='0'; *(p++)='0'; } | ||
594 | else | ||
595 | { | ||
596 | *(p++)= *(str++); | ||
597 | *(p++)= *(str++); | ||
598 | /* Skip any fractional seconds... */ | ||
599 | if (*str == '.') | ||
600 | { | ||
601 | str++; | ||
602 | while ((*str >= '0') && (*str <= '9')) str++; | ||
603 | } | ||
604 | |||
605 | } | ||
606 | *(p++)='Z'; | ||
607 | *(p++)='\0'; | ||
608 | |||
609 | if (*str == 'Z') | ||
610 | offset=0; | ||
611 | else | ||
612 | { | ||
613 | if ((*str != '+') && (str[5] != '-')) | ||
614 | return 0; | ||
615 | offset=((str[1]-'0')*10+(str[2]-'0'))*60; | ||
616 | offset+=(str[3]-'0')*10+(str[4]-'0'); | ||
617 | if (*str == '-') | ||
618 | offset= -offset; | ||
619 | } | ||
620 | atm.type=ctm->type; | ||
621 | atm.length=sizeof(buff2); | ||
622 | atm.data=(unsigned char *)buff2; | ||
623 | |||
624 | X509_time_adj(&atm,-offset*60, cmp_time); | ||
625 | |||
626 | if (ctm->type == V_ASN1_UTCTIME) | ||
627 | { | ||
628 | i=(buff1[0]-'0')*10+(buff1[1]-'0'); | ||
629 | if (i < 50) i+=100; /* cf. RFC 2459 */ | ||
630 | j=(buff2[0]-'0')*10+(buff2[1]-'0'); | ||
631 | if (j < 50) j+=100; | ||
632 | |||
633 | if (i < j) return -1; | ||
634 | if (i > j) return 1; | ||
635 | } | ||
636 | i=strcmp(buff1,buff2); | ||
637 | if (i == 0) /* wait a second then return younger :-) */ | ||
638 | return -1; | ||
639 | else | ||
640 | return i; | ||
641 | } | ||
642 | |||
643 | ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj) | ||
644 | { | ||
645 | return X509_time_adj(s, adj, NULL); | ||
646 | } | ||
647 | |||
648 | ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *in_tm) | ||
649 | { | ||
650 | time_t t; | ||
651 | |||
652 | if (in_tm) t = *in_tm; | ||
653 | else time(&t); | ||
654 | |||
655 | t+=adj; | ||
656 | if (!s) return ASN1_TIME_set(s, t); | ||
657 | if (s->type == V_ASN1_UTCTIME) return ASN1_UTCTIME_set(s,t); | ||
658 | return ASN1_GENERALIZEDTIME_set(s, t); | ||
659 | } | ||
660 | |||
661 | int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain) | ||
662 | { | ||
663 | EVP_PKEY *ktmp=NULL,*ktmp2; | ||
664 | int i,j; | ||
665 | |||
666 | if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey)) return 1; | ||
667 | |||
668 | for (i=0; i<sk_X509_num(chain); i++) | ||
669 | { | ||
670 | ktmp=X509_get_pubkey(sk_X509_value(chain,i)); | ||
671 | if (ktmp == NULL) | ||
672 | { | ||
673 | X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY); | ||
674 | return 0; | ||
675 | } | ||
676 | if (!EVP_PKEY_missing_parameters(ktmp)) | ||
677 | break; | ||
678 | else | ||
679 | { | ||
680 | EVP_PKEY_free(ktmp); | ||
681 | ktmp=NULL; | ||
682 | } | ||
683 | } | ||
684 | if (ktmp == NULL) | ||
685 | { | ||
686 | X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN); | ||
687 | return 0; | ||
688 | } | ||
689 | |||
690 | /* first, populate the other certs */ | ||
691 | for (j=i-1; j >= 0; j--) | ||
692 | { | ||
693 | ktmp2=X509_get_pubkey(sk_X509_value(chain,j)); | ||
694 | EVP_PKEY_copy_parameters(ktmp2,ktmp); | ||
695 | EVP_PKEY_free(ktmp2); | ||
696 | } | ||
697 | |||
698 | if (pkey != NULL) EVP_PKEY_copy_parameters(pkey,ktmp); | ||
699 | EVP_PKEY_free(ktmp); | ||
700 | return 1; | ||
701 | } | ||
702 | |||
703 | int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | ||
704 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) | ||
705 | { | ||
706 | x509_store_ctx_num++; | ||
707 | return CRYPTO_get_ex_new_index(x509_store_ctx_num-1, | ||
708 | &x509_store_ctx_method, | ||
709 | argl,argp,new_func,dup_func,free_func); | ||
710 | } | ||
711 | |||
712 | int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data) | ||
713 | { | ||
714 | return CRYPTO_set_ex_data(&ctx->ex_data,idx,data); | ||
715 | } | ||
716 | |||
717 | void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx) | ||
718 | { | ||
719 | return CRYPTO_get_ex_data(&ctx->ex_data,idx); | ||
720 | } | ||
721 | |||
722 | int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx) | ||
723 | { | ||
724 | return ctx->error; | ||
725 | } | ||
726 | |||
727 | void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err) | ||
728 | { | ||
729 | ctx->error=err; | ||
730 | } | ||
731 | |||
732 | int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx) | ||
733 | { | ||
734 | return ctx->error_depth; | ||
735 | } | ||
736 | |||
737 | X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx) | ||
738 | { | ||
739 | return ctx->current_cert; | ||
740 | } | ||
741 | |||
742 | STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx) | ||
743 | { | ||
744 | return ctx->chain; | ||
745 | } | ||
746 | |||
747 | STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx) | ||
748 | { | ||
749 | int i; | ||
750 | X509 *x; | ||
751 | STACK_OF(X509) *chain; | ||
752 | if (!ctx->chain || !(chain = sk_X509_dup(ctx->chain))) return NULL; | ||
753 | for (i = 0; i < sk_X509_num(chain); i++) | ||
754 | { | ||
755 | x = sk_X509_value(chain, i); | ||
756 | CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509); | ||
757 | } | ||
758 | return chain; | ||
759 | } | ||
760 | |||
761 | void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x) | ||
762 | { | ||
763 | ctx->cert=x; | ||
764 | } | ||
765 | |||
766 | void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk) | ||
767 | { | ||
768 | ctx->untrusted=sk; | ||
769 | } | ||
770 | |||
771 | int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose) | ||
772 | { | ||
773 | return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0); | ||
774 | } | ||
775 | |||
776 | int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust) | ||
777 | { | ||
778 | return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust); | ||
779 | } | ||
780 | |||
781 | /* This function is used to set the X509_STORE_CTX purpose and trust | ||
782 | * values. This is intended to be used when another structure has its | ||
783 | * own trust and purpose values which (if set) will be inherited by | ||
784 | * the ctx. If they aren't set then we will usually have a default | ||
785 | * purpose in mind which should then be used to set the trust value. | ||
786 | * An example of this is SSL use: an SSL structure will have its own | ||
787 | * purpose and trust settings which the application can set: if they | ||
788 | * aren't set then we use the default of SSL client/server. | ||
789 | */ | ||
790 | |||
791 | int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, | ||
792 | int purpose, int trust) | ||
793 | { | ||
794 | int idx; | ||
795 | /* If purpose not set use default */ | ||
796 | if (!purpose) purpose = def_purpose; | ||
797 | /* If we have a purpose then check it is valid */ | ||
798 | if (purpose) | ||
799 | { | ||
800 | X509_PURPOSE *ptmp; | ||
801 | idx = X509_PURPOSE_get_by_id(purpose); | ||
802 | if (idx == -1) | ||
803 | { | ||
804 | X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT, | ||
805 | X509_R_UNKNOWN_PURPOSE_ID); | ||
806 | return 0; | ||
807 | } | ||
808 | ptmp = X509_PURPOSE_get0(idx); | ||
809 | if (ptmp->trust == X509_TRUST_DEFAULT) | ||
810 | { | ||
811 | idx = X509_PURPOSE_get_by_id(def_purpose); | ||
812 | if (idx == -1) | ||
813 | { | ||
814 | X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT, | ||
815 | X509_R_UNKNOWN_PURPOSE_ID); | ||
816 | return 0; | ||
817 | } | ||
818 | ptmp = X509_PURPOSE_get0(idx); | ||
819 | } | ||
820 | /* If trust not set then get from purpose default */ | ||
821 | if (!trust) trust = ptmp->trust; | ||
822 | } | ||
823 | if (trust) | ||
824 | { | ||
825 | idx = X509_TRUST_get_by_id(trust); | ||
826 | if (idx == -1) | ||
827 | { | ||
828 | X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT, | ||
829 | X509_R_UNKNOWN_TRUST_ID); | ||
830 | return 0; | ||
831 | } | ||
832 | } | ||
833 | |||
834 | if (purpose) ctx->purpose = purpose; | ||
835 | if (trust) ctx->trust = trust; | ||
836 | return 1; | ||
837 | } | ||
838 | |||
839 | X509_STORE_CTX *X509_STORE_CTX_new(void) | ||
840 | { | ||
841 | X509_STORE_CTX *ctx; | ||
842 | ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX)); | ||
843 | if (ctx) memset(ctx, 0, sizeof(X509_STORE_CTX)); | ||
844 | return ctx; | ||
845 | } | ||
846 | |||
847 | void X509_STORE_CTX_free(X509_STORE_CTX *ctx) | ||
848 | { | ||
849 | X509_STORE_CTX_cleanup(ctx); | ||
850 | OPENSSL_free(ctx); | ||
851 | } | ||
852 | |||
853 | void X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, | ||
854 | STACK_OF(X509) *chain) | ||
855 | { | ||
856 | ctx->ctx=store; | ||
857 | ctx->current_method=0; | ||
858 | ctx->cert=x509; | ||
859 | ctx->untrusted=chain; | ||
860 | ctx->last_untrusted=0; | ||
861 | ctx->purpose=0; | ||
862 | ctx->trust=0; | ||
863 | ctx->check_time=0; | ||
864 | ctx->flags=0; | ||
865 | ctx->other_ctx=NULL; | ||
866 | ctx->valid=0; | ||
867 | ctx->chain=NULL; | ||
868 | ctx->depth=9; | ||
869 | ctx->error=0; | ||
870 | ctx->error_depth=0; | ||
871 | ctx->current_cert=NULL; | ||
872 | ctx->current_issuer=NULL; | ||
873 | ctx->check_issued = check_issued; | ||
874 | ctx->get_issuer = X509_STORE_CTX_get1_issuer; | ||
875 | ctx->verify_cb = store->verify_cb; | ||
876 | ctx->verify = store->verify; | ||
877 | ctx->cleanup = 0; | ||
878 | memset(&(ctx->ex_data),0,sizeof(CRYPTO_EX_DATA)); | ||
879 | } | ||
880 | |||
881 | /* Set alternative lookup method: just a STACK of trusted certificates. | ||
882 | * This avoids X509_STORE nastiness where it isn't needed. | ||
883 | */ | ||
884 | |||
885 | void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk) | ||
886 | { | ||
887 | ctx->other_ctx = sk; | ||
888 | ctx->get_issuer = get_issuer_sk; | ||
889 | } | ||
890 | |||
891 | void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx) | ||
892 | { | ||
893 | if (ctx->cleanup) ctx->cleanup(ctx); | ||
894 | if (ctx->chain != NULL) | ||
895 | { | ||
896 | sk_X509_pop_free(ctx->chain,X509_free); | ||
897 | ctx->chain=NULL; | ||
898 | } | ||
899 | CRYPTO_free_ex_data(x509_store_ctx_method,ctx,&(ctx->ex_data)); | ||
900 | memset(&ctx->ex_data,0,sizeof(CRYPTO_EX_DATA)); | ||
901 | } | ||
902 | |||
903 | void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, long flags) | ||
904 | { | ||
905 | ctx->flags |= flags; | ||
906 | } | ||
907 | |||
908 | void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, long flags, time_t t) | ||
909 | { | ||
910 | ctx->check_time = t; | ||
911 | ctx->flags |= X509_V_FLAG_USE_CHECK_TIME; | ||
912 | } | ||
913 | |||
914 | IMPLEMENT_STACK_OF(X509) | ||
915 | IMPLEMENT_ASN1_SET_OF(X509) | ||
916 | |||
917 | IMPLEMENT_STACK_OF(X509_NAME) | ||
918 | |||
919 | IMPLEMENT_STACK_OF(X509_ATTRIBUTE) | ||
920 | IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE) | ||
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h deleted file mode 100644 index e289d5309a..0000000000 --- a/src/lib/libcrypto/x509/x509_vfy.h +++ /dev/null | |||
@@ -1,390 +0,0 @@ | |||
1 | /* crypto/x509/x509_vfy.h */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #ifndef HEADER_X509_H | ||
60 | #include <openssl/x509.h> | ||
61 | /* openssl/x509.h ends up #include-ing this file at about the only | ||
62 | * appropriate moment. */ | ||
63 | #endif | ||
64 | |||
65 | #ifndef HEADER_X509_VFY_H | ||
66 | #define HEADER_X509_VFY_H | ||
67 | |||
68 | #ifndef NO_LHASH | ||
69 | #include <openssl/lhash.h> | ||
70 | #endif | ||
71 | #include <openssl/bio.h> | ||
72 | #include <openssl/crypto.h> | ||
73 | |||
74 | #ifdef __cplusplus | ||
75 | extern "C" { | ||
76 | #endif | ||
77 | |||
78 | /* Outer object */ | ||
79 | typedef struct x509_hash_dir_st | ||
80 | { | ||
81 | int num_dirs; | ||
82 | char **dirs; | ||
83 | int *dirs_type; | ||
84 | int num_dirs_alloced; | ||
85 | } X509_HASH_DIR_CTX; | ||
86 | |||
87 | typedef struct x509_file_st | ||
88 | { | ||
89 | int num_paths; /* number of paths to files or directories */ | ||
90 | int num_alloced; | ||
91 | char **paths; /* the list of paths or directories */ | ||
92 | int *path_type; | ||
93 | } X509_CERT_FILE_CTX; | ||
94 | |||
95 | /*******************************/ | ||
96 | /* | ||
97 | SSL_CTX -> X509_STORE | ||
98 | -> X509_LOOKUP | ||
99 | ->X509_LOOKUP_METHOD | ||
100 | -> X509_LOOKUP | ||
101 | ->X509_LOOKUP_METHOD | ||
102 | |||
103 | SSL -> X509_STORE_CTX | ||
104 | ->X509_STORE | ||
105 | |||
106 | The X509_STORE holds the tables etc for verification stuff. | ||
107 | A X509_STORE_CTX is used while validating a single certificate. | ||
108 | The X509_STORE has X509_LOOKUPs for looking up certs. | ||
109 | The X509_STORE then calls a function to actually verify the | ||
110 | certificate chain. | ||
111 | */ | ||
112 | |||
113 | #define X509_LU_RETRY -1 | ||
114 | #define X509_LU_FAIL 0 | ||
115 | #define X509_LU_X509 1 | ||
116 | #define X509_LU_CRL 2 | ||
117 | #define X509_LU_PKEY 3 | ||
118 | |||
119 | typedef struct x509_object_st | ||
120 | { | ||
121 | /* one of the above types */ | ||
122 | int type; | ||
123 | union { | ||
124 | char *ptr; | ||
125 | X509 *x509; | ||
126 | X509_CRL *crl; | ||
127 | EVP_PKEY *pkey; | ||
128 | } data; | ||
129 | } X509_OBJECT; | ||
130 | |||
131 | typedef struct x509_lookup_st X509_LOOKUP; | ||
132 | |||
133 | DECLARE_STACK_OF(X509_LOOKUP) | ||
134 | DECLARE_STACK_OF(X509_OBJECT) | ||
135 | |||
136 | /* This is a static that defines the function interface */ | ||
137 | typedef struct x509_lookup_method_st | ||
138 | { | ||
139 | const char *name; | ||
140 | int (*new_item)(X509_LOOKUP *ctx); | ||
141 | void (*free)(X509_LOOKUP *ctx); | ||
142 | int (*init)(X509_LOOKUP *ctx); | ||
143 | int (*shutdown)(X509_LOOKUP *ctx); | ||
144 | int (*ctrl)(X509_LOOKUP *ctx,int cmd,const char *argc,long argl, | ||
145 | char **ret); | ||
146 | int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name, | ||
147 | X509_OBJECT *ret); | ||
148 | int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name, | ||
149 | ASN1_INTEGER *serial,X509_OBJECT *ret); | ||
150 | int (*get_by_fingerprint)(X509_LOOKUP *ctx,int type, | ||
151 | unsigned char *bytes,int len, | ||
152 | X509_OBJECT *ret); | ||
153 | int (*get_by_alias)(X509_LOOKUP *ctx,int type,char *str,int len, | ||
154 | X509_OBJECT *ret); | ||
155 | } X509_LOOKUP_METHOD; | ||
156 | |||
157 | typedef struct x509_store_ctx_st X509_STORE_CTX; | ||
158 | |||
159 | /* This is used to hold everything. It is used for all certificate | ||
160 | * validation. Once we have a certificate chain, the 'verify' | ||
161 | * function is then called to actually check the cert chain. */ | ||
162 | typedef struct x509_store_st | ||
163 | { | ||
164 | /* The following is a cache of trusted certs */ | ||
165 | int cache; /* if true, stash any hits */ | ||
166 | STACK_OF(X509_OBJECT) *objs; /* Cache of all objects */ | ||
167 | |||
168 | /* These are external lookup methods */ | ||
169 | STACK_OF(X509_LOOKUP) *get_cert_methods; | ||
170 | int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ | ||
171 | int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ | ||
172 | |||
173 | CRYPTO_EX_DATA ex_data; | ||
174 | int references; | ||
175 | int depth; /* how deep to look (still unused -- X509_STORE_CTX's depth is used) */ | ||
176 | } X509_STORE; | ||
177 | |||
178 | #define X509_STORE_set_depth(ctx,d) ((ctx)->depth=(d)) | ||
179 | |||
180 | #define X509_STORE_set_verify_cb_func(ctx,func) ((ctx)->verify_cb=(func)) | ||
181 | #define X509_STORE_set_verify_func(ctx,func) ((ctx)->verify=(func)) | ||
182 | |||
183 | /* This is the functions plus an instance of the local variables. */ | ||
184 | struct x509_lookup_st | ||
185 | { | ||
186 | int init; /* have we been started */ | ||
187 | int skip; /* don't use us. */ | ||
188 | X509_LOOKUP_METHOD *method; /* the functions */ | ||
189 | char *method_data; /* method data */ | ||
190 | |||
191 | X509_STORE *store_ctx; /* who owns us */ | ||
192 | }; | ||
193 | |||
194 | /* This is a used when verifying cert chains. Since the | ||
195 | * gathering of the cert chain can take some time (and have to be | ||
196 | * 'retried', this needs to be kept and passed around. */ | ||
197 | struct x509_store_ctx_st /* X509_STORE_CTX */ | ||
198 | { | ||
199 | X509_STORE *ctx; | ||
200 | int current_method; /* used when looking up certs */ | ||
201 | |||
202 | /* The following are set by the caller */ | ||
203 | X509 *cert; /* The cert to check */ | ||
204 | STACK_OF(X509) *untrusted; /* chain of X509s - untrusted - passed in */ | ||
205 | int purpose; /* purpose to check untrusted certificates */ | ||
206 | int trust; /* trust setting to check */ | ||
207 | time_t check_time; /* time to make verify at */ | ||
208 | unsigned long flags; /* Various verify flags */ | ||
209 | void *other_ctx; /* Other info for use with get_issuer() */ | ||
210 | |||
211 | /* Callbacks for various operations */ | ||
212 | int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ | ||
213 | int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ | ||
214 | int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */ | ||
215 | int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */ | ||
216 | int (*cleanup)(X509_STORE_CTX *ctx); | ||
217 | |||
218 | /* The following is built up */ | ||
219 | int depth; /* how far to go looking up certs */ | ||
220 | int valid; /* if 0, rebuild chain */ | ||
221 | int last_untrusted; /* index of last untrusted cert */ | ||
222 | STACK_OF(X509) *chain; /* chain of X509s - built up and trusted */ | ||
223 | |||
224 | /* When something goes wrong, this is why */ | ||
225 | int error_depth; | ||
226 | int error; | ||
227 | X509 *current_cert; | ||
228 | X509 *current_issuer; /* cert currently being tested as valid issuer */ | ||
229 | |||
230 | CRYPTO_EX_DATA ex_data; | ||
231 | }; | ||
232 | |||
233 | #define X509_STORE_CTX_set_depth(ctx,d) ((ctx)->depth=(d)) | ||
234 | |||
235 | #define X509_STORE_CTX_set_app_data(ctx,data) \ | ||
236 | X509_STORE_CTX_set_ex_data(ctx,0,data) | ||
237 | #define X509_STORE_CTX_get_app_data(ctx) \ | ||
238 | X509_STORE_CTX_get_ex_data(ctx,0) | ||
239 | |||
240 | #define X509_L_FILE_LOAD 1 | ||
241 | #define X509_L_ADD_DIR 2 | ||
242 | |||
243 | #define X509_LOOKUP_load_file(x,name,type) \ | ||
244 | X509_LOOKUP_ctrl((x),X509_L_FILE_LOAD,(name),(long)(type),NULL) | ||
245 | |||
246 | #define X509_LOOKUP_add_dir(x,name,type) \ | ||
247 | X509_LOOKUP_ctrl((x),X509_L_ADD_DIR,(name),(long)(type),NULL) | ||
248 | |||
249 | #define X509_V_OK 0 | ||
250 | /* illegal error (for uninitialized values, to avoid X509_V_OK): 1 */ | ||
251 | |||
252 | #define X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT 2 | ||
253 | #define X509_V_ERR_UNABLE_TO_GET_CRL 3 | ||
254 | #define X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE 4 | ||
255 | #define X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE 5 | ||
256 | #define X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY 6 | ||
257 | #define X509_V_ERR_CERT_SIGNATURE_FAILURE 7 | ||
258 | #define X509_V_ERR_CRL_SIGNATURE_FAILURE 8 | ||
259 | #define X509_V_ERR_CERT_NOT_YET_VALID 9 | ||
260 | #define X509_V_ERR_CERT_HAS_EXPIRED 10 | ||
261 | #define X509_V_ERR_CRL_NOT_YET_VALID 11 | ||
262 | #define X509_V_ERR_CRL_HAS_EXPIRED 12 | ||
263 | #define X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD 13 | ||
264 | #define X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD 14 | ||
265 | #define X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD 15 | ||
266 | #define X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD 16 | ||
267 | #define X509_V_ERR_OUT_OF_MEM 17 | ||
268 | #define X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT 18 | ||
269 | #define X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN 19 | ||
270 | #define X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY 20 | ||
271 | #define X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE 21 | ||
272 | #define X509_V_ERR_CERT_CHAIN_TOO_LONG 22 | ||
273 | #define X509_V_ERR_CERT_REVOKED 23 | ||
274 | #define X509_V_ERR_INVALID_CA 24 | ||
275 | #define X509_V_ERR_PATH_LENGTH_EXCEEDED 25 | ||
276 | #define X509_V_ERR_INVALID_PURPOSE 26 | ||
277 | #define X509_V_ERR_CERT_UNTRUSTED 27 | ||
278 | #define X509_V_ERR_CERT_REJECTED 28 | ||
279 | /* These are 'informational' when looking for issuer cert */ | ||
280 | #define X509_V_ERR_SUBJECT_ISSUER_MISMATCH 29 | ||
281 | #define X509_V_ERR_AKID_SKID_MISMATCH 30 | ||
282 | #define X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH 31 | ||
283 | #define X509_V_ERR_KEYUSAGE_NO_CERTSIGN 32 | ||
284 | |||
285 | /* The application is not happy */ | ||
286 | #define X509_V_ERR_APPLICATION_VERIFICATION 50 | ||
287 | |||
288 | /* Certificate verify flags */ | ||
289 | |||
290 | #define X509_V_FLAG_CB_ISSUER_CHECK 0x1 /* Send issuer+subject checks to verify_cb */ | ||
291 | #define X509_V_FLAG_USE_CHECK_TIME 0x2 /* Use check time instead of current time */ | ||
292 | |||
293 | /* These functions are being redefined in another directory, | ||
294 | and clash when the linker is case-insensitive, so let's | ||
295 | hide them a little, by giving them an extra 'o' at the | ||
296 | beginning of the name... */ | ||
297 | #ifdef VMS | ||
298 | #undef X509v3_cleanup_extensions | ||
299 | #define X509v3_cleanup_extensions oX509v3_cleanup_extensions | ||
300 | #undef X509v3_add_extension | ||
301 | #define X509v3_add_extension oX509v3_add_extension | ||
302 | #undef X509v3_add_netscape_extensions | ||
303 | #define X509v3_add_netscape_extensions oX509v3_add_netscape_extensions | ||
304 | #undef X509v3_add_standard_extensions | ||
305 | #define X509v3_add_standard_extensions oX509v3_add_standard_extensions | ||
306 | #endif | ||
307 | |||
308 | int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, | ||
309 | X509_NAME *name); | ||
310 | X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,int type,X509_NAME *name); | ||
311 | X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h, X509_OBJECT *x); | ||
312 | void X509_OBJECT_up_ref_count(X509_OBJECT *a); | ||
313 | void X509_OBJECT_free_contents(X509_OBJECT *a); | ||
314 | X509_STORE *X509_STORE_new(void ); | ||
315 | void X509_STORE_free(X509_STORE *v); | ||
316 | |||
317 | X509_STORE_CTX *X509_STORE_CTX_new(void); | ||
318 | |||
319 | int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); | ||
320 | |||
321 | void X509_STORE_CTX_free(X509_STORE_CTX *ctx); | ||
322 | void X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, | ||
323 | X509 *x509, STACK_OF(X509) *chain); | ||
324 | void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk); | ||
325 | void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx); | ||
326 | |||
327 | X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m); | ||
328 | |||
329 | X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void); | ||
330 | X509_LOOKUP_METHOD *X509_LOOKUP_file(void); | ||
331 | |||
332 | int X509_STORE_add_cert(X509_STORE *ctx, X509 *x); | ||
333 | int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x); | ||
334 | |||
335 | int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name, | ||
336 | X509_OBJECT *ret); | ||
337 | |||
338 | int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, | ||
339 | long argl, char **ret); | ||
340 | |||
341 | #ifndef NO_STDIO | ||
342 | int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type); | ||
343 | int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type); | ||
344 | int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type); | ||
345 | #endif | ||
346 | |||
347 | |||
348 | X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method); | ||
349 | void X509_LOOKUP_free(X509_LOOKUP *ctx); | ||
350 | int X509_LOOKUP_init(X509_LOOKUP *ctx); | ||
351 | int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name, | ||
352 | X509_OBJECT *ret); | ||
353 | int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name, | ||
354 | ASN1_INTEGER *serial, X509_OBJECT *ret); | ||
355 | int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type, | ||
356 | unsigned char *bytes, int len, X509_OBJECT *ret); | ||
357 | int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, | ||
358 | int len, X509_OBJECT *ret); | ||
359 | int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); | ||
360 | |||
361 | #ifndef NO_STDIO | ||
362 | int X509_STORE_load_locations (X509_STORE *ctx, | ||
363 | const char *file, const char *dir); | ||
364 | int X509_STORE_set_default_paths(X509_STORE *ctx); | ||
365 | #endif | ||
366 | |||
367 | int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | ||
368 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); | ||
369 | int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx,int idx,void *data); | ||
370 | void * X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx,int idx); | ||
371 | int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx); | ||
372 | void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s); | ||
373 | int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx); | ||
374 | X509 * X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx); | ||
375 | STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx); | ||
376 | STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx); | ||
377 | void X509_STORE_CTX_set_cert(X509_STORE_CTX *c,X509 *x); | ||
378 | void X509_STORE_CTX_set_chain(X509_STORE_CTX *c,STACK_OF(X509) *sk); | ||
379 | int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose); | ||
380 | int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust); | ||
381 | int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, | ||
382 | int purpose, int trust); | ||
383 | void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, long flags); | ||
384 | void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, long flags, time_t t); | ||
385 | |||
386 | #ifdef __cplusplus | ||
387 | } | ||
388 | #endif | ||
389 | #endif | ||
390 | |||
diff --git a/src/lib/libcrypto/x509/x509name.c b/src/lib/libcrypto/x509/x509name.c deleted file mode 100644 index 4c20e03ece..0000000000 --- a/src/lib/libcrypto/x509/x509name.c +++ /dev/null | |||
@@ -1,383 +0,0 @@ | |||
1 | /* crypto/x509/x509name.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <openssl/stack.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/objects.h> | ||
64 | #include <openssl/evp.h> | ||
65 | #include <openssl/x509.h> | ||
66 | |||
67 | int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf, int len) | ||
68 | { | ||
69 | ASN1_OBJECT *obj; | ||
70 | |||
71 | obj=OBJ_nid2obj(nid); | ||
72 | if (obj == NULL) return(-1); | ||
73 | return(X509_NAME_get_text_by_OBJ(name,obj,buf,len)); | ||
74 | } | ||
75 | |||
76 | int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf, | ||
77 | int len) | ||
78 | { | ||
79 | int i; | ||
80 | ASN1_STRING *data; | ||
81 | |||
82 | i=X509_NAME_get_index_by_OBJ(name,obj,-1); | ||
83 | if (i < 0) return(-1); | ||
84 | data=X509_NAME_ENTRY_get_data(X509_NAME_get_entry(name,i)); | ||
85 | i=(data->length > (len-1))?(len-1):data->length; | ||
86 | if (buf == NULL) return(data->length); | ||
87 | memcpy(buf,data->data,i); | ||
88 | buf[i]='\0'; | ||
89 | return(i); | ||
90 | } | ||
91 | |||
92 | int X509_NAME_entry_count(X509_NAME *name) | ||
93 | { | ||
94 | if (name == NULL) return(0); | ||
95 | return(sk_X509_NAME_ENTRY_num(name->entries)); | ||
96 | } | ||
97 | |||
98 | int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos) | ||
99 | { | ||
100 | ASN1_OBJECT *obj; | ||
101 | |||
102 | obj=OBJ_nid2obj(nid); | ||
103 | if (obj == NULL) return(-2); | ||
104 | return(X509_NAME_get_index_by_OBJ(name,obj,lastpos)); | ||
105 | } | ||
106 | |||
107 | /* NOTE: you should be passsing -1, not 0 as lastpos */ | ||
108 | int X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, | ||
109 | int lastpos) | ||
110 | { | ||
111 | int n; | ||
112 | X509_NAME_ENTRY *ne; | ||
113 | STACK_OF(X509_NAME_ENTRY) *sk; | ||
114 | |||
115 | if (name == NULL) return(-1); | ||
116 | if (lastpos < 0) | ||
117 | lastpos= -1; | ||
118 | sk=name->entries; | ||
119 | n=sk_X509_NAME_ENTRY_num(sk); | ||
120 | for (lastpos++; lastpos < n; lastpos++) | ||
121 | { | ||
122 | ne=sk_X509_NAME_ENTRY_value(sk,lastpos); | ||
123 | if (OBJ_cmp(ne->object,obj) == 0) | ||
124 | return(lastpos); | ||
125 | } | ||
126 | return(-1); | ||
127 | } | ||
128 | |||
129 | X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc) | ||
130 | { | ||
131 | if(name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc | ||
132 | || loc < 0) | ||
133 | return(NULL); | ||
134 | else | ||
135 | return(sk_X509_NAME_ENTRY_value(name->entries,loc)); | ||
136 | } | ||
137 | |||
138 | X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc) | ||
139 | { | ||
140 | X509_NAME_ENTRY *ret; | ||
141 | int i,n,set_prev,set_next; | ||
142 | STACK_OF(X509_NAME_ENTRY) *sk; | ||
143 | |||
144 | if (name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc | ||
145 | || loc < 0) | ||
146 | return(NULL); | ||
147 | sk=name->entries; | ||
148 | ret=sk_X509_NAME_ENTRY_delete(sk,loc); | ||
149 | n=sk_X509_NAME_ENTRY_num(sk); | ||
150 | name->modified=1; | ||
151 | if (loc == n) return(ret); | ||
152 | |||
153 | /* else we need to fixup the set field */ | ||
154 | if (loc != 0) | ||
155 | set_prev=(sk_X509_NAME_ENTRY_value(sk,loc-1))->set; | ||
156 | else | ||
157 | set_prev=ret->set-1; | ||
158 | set_next=sk_X509_NAME_ENTRY_value(sk,loc)->set; | ||
159 | |||
160 | /* set_prev is the previous set | ||
161 | * set is the current set | ||
162 | * set_next is the following | ||
163 | * prev 1 1 1 1 1 1 1 1 | ||
164 | * set 1 1 2 2 | ||
165 | * next 1 1 2 2 2 2 3 2 | ||
166 | * so basically only if prev and next differ by 2, then | ||
167 | * re-number down by 1 */ | ||
168 | if (set_prev+1 < set_next) | ||
169 | for (i=loc; i<n; i++) | ||
170 | sk_X509_NAME_ENTRY_value(sk,i)->set--; | ||
171 | return(ret); | ||
172 | } | ||
173 | |||
174 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, | ||
175 | unsigned char *bytes, int len, int loc, int set) | ||
176 | { | ||
177 | X509_NAME_ENTRY *ne; | ||
178 | int ret; | ||
179 | ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len); | ||
180 | if(!ne) return 0; | ||
181 | ret = X509_NAME_add_entry(name, ne, loc, set); | ||
182 | X509_NAME_ENTRY_free(ne); | ||
183 | return ret; | ||
184 | } | ||
185 | |||
186 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, | ||
187 | unsigned char *bytes, int len, int loc, int set) | ||
188 | { | ||
189 | X509_NAME_ENTRY *ne; | ||
190 | int ret; | ||
191 | ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len); | ||
192 | if(!ne) return 0; | ||
193 | ret = X509_NAME_add_entry(name, ne, loc, set); | ||
194 | X509_NAME_ENTRY_free(ne); | ||
195 | return ret; | ||
196 | } | ||
197 | |||
198 | int X509_NAME_add_entry_by_txt(X509_NAME *name, char *field, int type, | ||
199 | unsigned char *bytes, int len, int loc, int set) | ||
200 | { | ||
201 | X509_NAME_ENTRY *ne; | ||
202 | int ret; | ||
203 | ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len); | ||
204 | if(!ne) return 0; | ||
205 | ret = X509_NAME_add_entry(name, ne, loc, set); | ||
206 | X509_NAME_ENTRY_free(ne); | ||
207 | return ret; | ||
208 | } | ||
209 | |||
210 | /* if set is -1, append to previous set, 0 'a new one', and 1, | ||
211 | * prepend to the guy we are about to stomp on. */ | ||
212 | int X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc, | ||
213 | int set) | ||
214 | { | ||
215 | X509_NAME_ENTRY *new_name=NULL; | ||
216 | int n,i,inc; | ||
217 | STACK_OF(X509_NAME_ENTRY) *sk; | ||
218 | |||
219 | if (name == NULL) return(0); | ||
220 | sk=name->entries; | ||
221 | n=sk_X509_NAME_ENTRY_num(sk); | ||
222 | if (loc > n) loc=n; | ||
223 | else if (loc < 0) loc=n; | ||
224 | |||
225 | name->modified=1; | ||
226 | |||
227 | if (set == -1) | ||
228 | { | ||
229 | if (loc == 0) | ||
230 | { | ||
231 | set=0; | ||
232 | inc=1; | ||
233 | } | ||
234 | else | ||
235 | { | ||
236 | set=sk_X509_NAME_ENTRY_value(sk,loc-1)->set; | ||
237 | inc=0; | ||
238 | } | ||
239 | } | ||
240 | else /* if (set >= 0) */ | ||
241 | { | ||
242 | if (loc >= n) | ||
243 | { | ||
244 | if (loc != 0) | ||
245 | set=sk_X509_NAME_ENTRY_value(sk,loc-1)->set+1; | ||
246 | else | ||
247 | set=0; | ||
248 | } | ||
249 | else | ||
250 | set=sk_X509_NAME_ENTRY_value(sk,loc)->set; | ||
251 | inc=(set == 0)?1:0; | ||
252 | } | ||
253 | |||
254 | if ((new_name=X509_NAME_ENTRY_dup(ne)) == NULL) | ||
255 | goto err; | ||
256 | new_name->set=set; | ||
257 | if (!sk_X509_NAME_ENTRY_insert(sk,new_name,loc)) | ||
258 | { | ||
259 | X509err(X509_F_X509_NAME_ADD_ENTRY,ERR_R_MALLOC_FAILURE); | ||
260 | goto err; | ||
261 | } | ||
262 | if (inc) | ||
263 | { | ||
264 | n=sk_X509_NAME_ENTRY_num(sk); | ||
265 | for (i=loc+1; i<n; i++) | ||
266 | sk_X509_NAME_ENTRY_value(sk,i-1)->set+=1; | ||
267 | } | ||
268 | return(1); | ||
269 | err: | ||
270 | if (new_name != NULL) | ||
271 | X509_NAME_ENTRY_free(new_name); | ||
272 | return(0); | ||
273 | } | ||
274 | |||
275 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, | ||
276 | char *field, int type, unsigned char *bytes, int len) | ||
277 | { | ||
278 | ASN1_OBJECT *obj; | ||
279 | X509_NAME_ENTRY *nentry; | ||
280 | |||
281 | obj=OBJ_txt2obj(field, 0); | ||
282 | if (obj == NULL) | ||
283 | { | ||
284 | X509err(X509_F_X509_NAME_ENTRY_CREATE_BY_TXT, | ||
285 | X509_R_INVALID_FIELD_NAME); | ||
286 | ERR_add_error_data(2, "name=", field); | ||
287 | return(NULL); | ||
288 | } | ||
289 | nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len); | ||
290 | ASN1_OBJECT_free(obj); | ||
291 | return nentry; | ||
292 | } | ||
293 | |||
294 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, | ||
295 | int type, unsigned char *bytes, int len) | ||
296 | { | ||
297 | ASN1_OBJECT *obj; | ||
298 | X509_NAME_ENTRY *nentry; | ||
299 | |||
300 | obj=OBJ_nid2obj(nid); | ||
301 | if (obj == NULL) | ||
302 | { | ||
303 | X509err(X509_F_X509_NAME_ENTRY_CREATE_BY_NID,X509_R_UNKNOWN_NID); | ||
304 | return(NULL); | ||
305 | } | ||
306 | nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len); | ||
307 | ASN1_OBJECT_free(obj); | ||
308 | return nentry; | ||
309 | } | ||
310 | |||
311 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, | ||
312 | ASN1_OBJECT *obj, int type, unsigned char *bytes, int len) | ||
313 | { | ||
314 | X509_NAME_ENTRY *ret; | ||
315 | |||
316 | if ((ne == NULL) || (*ne == NULL)) | ||
317 | { | ||
318 | if ((ret=X509_NAME_ENTRY_new()) == NULL) | ||
319 | return(NULL); | ||
320 | } | ||
321 | else | ||
322 | ret= *ne; | ||
323 | |||
324 | if (!X509_NAME_ENTRY_set_object(ret,obj)) | ||
325 | goto err; | ||
326 | if (!X509_NAME_ENTRY_set_data(ret,type,bytes,len)) | ||
327 | goto err; | ||
328 | |||
329 | if ((ne != NULL) && (*ne == NULL)) *ne=ret; | ||
330 | return(ret); | ||
331 | err: | ||
332 | if ((ne == NULL) || (ret != *ne)) | ||
333 | X509_NAME_ENTRY_free(ret); | ||
334 | return(NULL); | ||
335 | } | ||
336 | |||
337 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj) | ||
338 | { | ||
339 | if ((ne == NULL) || (obj == NULL)) | ||
340 | { | ||
341 | X509err(X509_F_X509_NAME_ENTRY_SET_OBJECT,ERR_R_PASSED_NULL_PARAMETER); | ||
342 | return(0); | ||
343 | } | ||
344 | ASN1_OBJECT_free(ne->object); | ||
345 | ne->object=OBJ_dup(obj); | ||
346 | return((ne->object == NULL)?0:1); | ||
347 | } | ||
348 | |||
349 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, | ||
350 | unsigned char *bytes, int len) | ||
351 | { | ||
352 | int i; | ||
353 | |||
354 | if ((ne == NULL) || ((bytes == NULL) && (len != 0))) return(0); | ||
355 | if((type > 0) && (type & MBSTRING_FLAG)) | ||
356 | return ASN1_STRING_set_by_NID(&ne->value, bytes, | ||
357 | len, type, | ||
358 | OBJ_obj2nid(ne->object)) ? 1 : 0; | ||
359 | if (len < 0) len=strlen((char *)bytes); | ||
360 | i=ASN1_STRING_set(ne->value,bytes,len); | ||
361 | if (!i) return(0); | ||
362 | if (type != V_ASN1_UNDEF) | ||
363 | { | ||
364 | if (type == V_ASN1_APP_CHOOSE) | ||
365 | ne->value->type=ASN1_PRINTABLE_type(bytes,len); | ||
366 | else | ||
367 | ne->value->type=type; | ||
368 | } | ||
369 | return(1); | ||
370 | } | ||
371 | |||
372 | ASN1_OBJECT *X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne) | ||
373 | { | ||
374 | if (ne == NULL) return(NULL); | ||
375 | return(ne->object); | ||
376 | } | ||
377 | |||
378 | ASN1_STRING *X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne) | ||
379 | { | ||
380 | if (ne == NULL) return(NULL); | ||
381 | return(ne->value); | ||
382 | } | ||
383 | |||
diff --git a/src/lib/libcrypto/x509/x509rset.c b/src/lib/libcrypto/x509/x509rset.c deleted file mode 100644 index d9f6b57372..0000000000 --- a/src/lib/libcrypto/x509/x509rset.c +++ /dev/null | |||
@@ -1,83 +0,0 @@ | |||
1 | /* crypto/x509/x509rset.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/evp.h> | ||
64 | #include <openssl/x509.h> | ||
65 | |||
66 | int X509_REQ_set_version(X509_REQ *x, long version) | ||
67 | { | ||
68 | if (x == NULL) return(0); | ||
69 | return(ASN1_INTEGER_set(x->req_info->version,version)); | ||
70 | } | ||
71 | |||
72 | int X509_REQ_set_subject_name(X509_REQ *x, X509_NAME *name) | ||
73 | { | ||
74 | if ((x == NULL) || (x->req_info == NULL)) return(0); | ||
75 | return(X509_NAME_set(&x->req_info->subject,name)); | ||
76 | } | ||
77 | |||
78 | int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey) | ||
79 | { | ||
80 | if ((x == NULL) || (x->req_info == NULL)) return(0); | ||
81 | return(X509_PUBKEY_set(&x->req_info->pubkey,pkey)); | ||
82 | } | ||
83 | |||
diff --git a/src/lib/libcrypto/x509/x509spki.c b/src/lib/libcrypto/x509/x509spki.c deleted file mode 100644 index fd0a534d88..0000000000 --- a/src/lib/libcrypto/x509/x509spki.c +++ /dev/null | |||
@@ -1,121 +0,0 @@ | |||
1 | /* x509spki.c */ | ||
2 | /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL | ||
3 | * project 1999. | ||
4 | */ | ||
5 | /* ==================================================================== | ||
6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | ||
7 | * | ||
8 | * Redistribution and use in source and binary forms, with or without | ||
9 | * modification, are permitted provided that the following conditions | ||
10 | * are met: | ||
11 | * | ||
12 | * 1. Redistributions of source code must retain the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer. | ||
14 | * | ||
15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
16 | * notice, this list of conditions and the following disclaimer in | ||
17 | * the documentation and/or other materials provided with the | ||
18 | * distribution. | ||
19 | * | ||
20 | * 3. All advertising materials mentioning features or use of this | ||
21 | * software must display the following acknowledgment: | ||
22 | * "This product includes software developed by the OpenSSL Project | ||
23 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
24 | * | ||
25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
26 | * endorse or promote products derived from this software without | ||
27 | * prior written permission. For written permission, please contact | ||
28 | * licensing@OpenSSL.org. | ||
29 | * | ||
30 | * 5. Products derived from this software may not be called "OpenSSL" | ||
31 | * nor may "OpenSSL" appear in their names without prior written | ||
32 | * permission of the OpenSSL Project. | ||
33 | * | ||
34 | * 6. Redistributions of any form whatsoever must retain the following | ||
35 | * acknowledgment: | ||
36 | * "This product includes software developed by the OpenSSL Project | ||
37 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
38 | * | ||
39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
50 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
51 | * ==================================================================== | ||
52 | * | ||
53 | * This product includes cryptographic software written by Eric Young | ||
54 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
55 | * Hudson (tjh@cryptsoft.com). | ||
56 | * | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/x509.h> | ||
62 | #include <openssl/asn1_mac.h> | ||
63 | |||
64 | int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey) | ||
65 | { | ||
66 | if ((x == NULL) || (x->spkac == NULL)) return(0); | ||
67 | return(X509_PUBKEY_set(&(x->spkac->pubkey),pkey)); | ||
68 | } | ||
69 | |||
70 | EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x) | ||
71 | { | ||
72 | if ((x == NULL) || (x->spkac == NULL)) | ||
73 | return(NULL); | ||
74 | return(X509_PUBKEY_get(x->spkac->pubkey)); | ||
75 | } | ||
76 | |||
77 | /* Load a Netscape SPKI from a base64 encoded string */ | ||
78 | |||
79 | NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len) | ||
80 | { | ||
81 | unsigned char *spki_der, *p; | ||
82 | int spki_len; | ||
83 | NETSCAPE_SPKI *spki; | ||
84 | if(len <= 0) len = strlen(str); | ||
85 | if (!(spki_der = OPENSSL_malloc(len + 1))) { | ||
86 | X509err(X509_F_NETSCAPE_SPKI_B64_DECODE, ERR_R_MALLOC_FAILURE); | ||
87 | return NULL; | ||
88 | } | ||
89 | spki_len = EVP_DecodeBlock(spki_der, (const unsigned char *)str, len); | ||
90 | if(spki_len < 0) { | ||
91 | X509err(X509_F_NETSCAPE_SPKI_B64_DECODE, | ||
92 | X509_R_BASE64_DECODE_ERROR); | ||
93 | OPENSSL_free(spki_der); | ||
94 | return NULL; | ||
95 | } | ||
96 | p = spki_der; | ||
97 | spki = d2i_NETSCAPE_SPKI(NULL, &p, spki_len); | ||
98 | OPENSSL_free(spki_der); | ||
99 | return spki; | ||
100 | } | ||
101 | |||
102 | /* Generate a base64 encoded string from an SPKI */ | ||
103 | |||
104 | char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki) | ||
105 | { | ||
106 | unsigned char *der_spki, *p; | ||
107 | char *b64_str; | ||
108 | int der_len; | ||
109 | der_len = i2d_NETSCAPE_SPKI(spki, NULL); | ||
110 | der_spki = OPENSSL_malloc(der_len); | ||
111 | b64_str = OPENSSL_malloc(der_len * 2); | ||
112 | if(!der_spki || !b64_str) { | ||
113 | X509err(X509_F_NETSCAPE_SPKI_B64_ENCODE, ERR_R_MALLOC_FAILURE); | ||
114 | return NULL; | ||
115 | } | ||
116 | p = der_spki; | ||
117 | i2d_NETSCAPE_SPKI(spki, &p); | ||
118 | EVP_EncodeBlock((unsigned char *)b64_str, der_spki, der_len); | ||
119 | OPENSSL_free(der_spki); | ||
120 | return b64_str; | ||
121 | } | ||
diff --git a/src/lib/libcrypto/x509/x509type.c b/src/lib/libcrypto/x509/x509type.c deleted file mode 100644 index 8e78b34458..0000000000 --- a/src/lib/libcrypto/x509/x509type.c +++ /dev/null | |||
@@ -1,114 +0,0 @@ | |||
1 | /* crypto/x509/x509type.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/evp.h> | ||
62 | #include <openssl/objects.h> | ||
63 | #include <openssl/x509.h> | ||
64 | |||
65 | int X509_certificate_type(X509 *x, EVP_PKEY *pkey) | ||
66 | { | ||
67 | EVP_PKEY *pk; | ||
68 | int ret=0,i; | ||
69 | |||
70 | if (x == NULL) return(0); | ||
71 | |||
72 | if (pkey == NULL) | ||
73 | pk=X509_get_pubkey(x); | ||
74 | else | ||
75 | pk=pkey; | ||
76 | |||
77 | if (pk == NULL) return(0); | ||
78 | |||
79 | switch (pk->type) | ||
80 | { | ||
81 | case EVP_PKEY_RSA: | ||
82 | ret=EVP_PK_RSA|EVP_PKT_SIGN; | ||
83 | /* if (!sign only extension) */ | ||
84 | ret|=EVP_PKT_ENC; | ||
85 | break; | ||
86 | case EVP_PKEY_DSA: | ||
87 | ret=EVP_PK_DSA|EVP_PKT_SIGN; | ||
88 | break; | ||
89 | case EVP_PKEY_DH: | ||
90 | ret=EVP_PK_DH|EVP_PKT_EXCH; | ||
91 | break; | ||
92 | default: | ||
93 | break; | ||
94 | } | ||
95 | |||
96 | i=X509_get_signature_type(x); | ||
97 | switch (i) | ||
98 | { | ||
99 | case EVP_PKEY_RSA: | ||
100 | ret|=EVP_PKS_RSA; | ||
101 | break; | ||
102 | case EVP_PKS_DSA: | ||
103 | ret|=EVP_PKS_DSA; | ||
104 | break; | ||
105 | default: | ||
106 | break; | ||
107 | } | ||
108 | |||
109 | if (EVP_PKEY_size(pk) <= 512) | ||
110 | ret|=EVP_PKT_EXP; | ||
111 | if(pkey==NULL) EVP_PKEY_free(pk); | ||
112 | return(ret); | ||
113 | } | ||
114 | |||
diff --git a/src/lib/libcrypto/x509/x_all.c b/src/lib/libcrypto/x509/x_all.c deleted file mode 100644 index 9bd6e2a39b..0000000000 --- a/src/lib/libcrypto/x509/x_all.c +++ /dev/null | |||
@@ -1,565 +0,0 @@ | |||
1 | /* crypto/x509/x_all.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
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 | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
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. | ||
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. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
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: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
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 | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
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 | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #undef SSLEAY_MACROS | ||
61 | #include <openssl/stack.h> | ||
62 | #include "cryptlib.h" | ||
63 | #include <openssl/buffer.h> | ||
64 | #include <openssl/asn1.h> | ||
65 | #include <openssl/evp.h> | ||
66 | #include <openssl/x509.h> | ||
67 | |||
68 | int X509_verify(X509 *a, EVP_PKEY *r) | ||
69 | { | ||
70 | return(ASN1_verify((int (*)())i2d_X509_CINF,a->sig_alg, | ||
71 | a->signature,(char *)a->cert_info,r)); | ||
72 | } | ||
73 | |||
74 | int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r) | ||
75 | { | ||
76 | return( ASN1_verify((int (*)())i2d_X509_REQ_INFO, | ||
77 | a->sig_alg,a->signature,(char *)a->req_info,r)); | ||
78 | } | ||
79 | |||
80 | int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r) | ||
81 | { | ||
82 | return(ASN1_verify((int (*)())i2d_X509_CRL_INFO, | ||
83 | a->sig_alg, a->signature,(char *)a->crl,r)); | ||
84 | } | ||
85 | |||
86 | int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r) | ||
87 | { | ||
88 | return(ASN1_verify((int (*)())i2d_NETSCAPE_SPKAC, | ||
89 | a->sig_algor,a->signature, (char *)a->spkac,r)); | ||
90 | } | ||
91 | |||
92 | int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md) | ||
93 | { | ||
94 | return(ASN1_sign((int (*)())i2d_X509_CINF, x->cert_info->signature, | ||
95 | x->sig_alg, x->signature, (char *)x->cert_info,pkey,md)); | ||
96 | } | ||
97 | |||
98 | int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md) | ||
99 | { | ||
100 | return(ASN1_sign((int (*)())i2d_X509_REQ_INFO,x->sig_alg, NULL, | ||
101 | x->signature, (char *)x->req_info,pkey,md)); | ||
102 | } | ||
103 | |||
104 | int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md) | ||
105 | { | ||
106 | return(ASN1_sign((int (*)())i2d_X509_CRL_INFO,x->crl->sig_alg, | ||
107 | x->sig_alg, x->signature, (char *)x->crl,pkey,md)); | ||
108 | } | ||
109 | |||
110 | int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md) | ||
111 | { | ||
112 | return(ASN1_sign((int (*)())i2d_NETSCAPE_SPKAC, x->sig_algor,NULL, | ||
113 | x->signature, (char *)x->spkac,pkey,md)); | ||
114 | } | ||
115 | |||
116 | X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa) | ||
117 | { | ||
118 | return((X509_ATTRIBUTE *)ASN1_dup((int (*)())i2d_X509_ATTRIBUTE, | ||
119 | (char *(*)())d2i_X509_ATTRIBUTE,(char *)xa)); | ||
120 | } | ||
121 | |||
122 | X509 *X509_dup(X509 *x509) | ||
123 | { | ||
124 | return((X509 *)ASN1_dup((int (*)())i2d_X509, | ||
125 | (char *(*)())d2i_X509,(char *)x509)); | ||
126 | } | ||
127 | |||
128 | X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex) | ||
129 | { | ||
130 | return((X509_EXTENSION *)ASN1_dup( | ||
131 | (int (*)())i2d_X509_EXTENSION, | ||
132 | (char *(*)())d2i_X509_EXTENSION,(char *)ex)); | ||
133 | } | ||
134 | |||
135 | #ifndef NO_FP_API | ||
136 | X509 *d2i_X509_fp(FILE *fp, X509 **x509) | ||
137 | { | ||
138 | return((X509 *)ASN1_d2i_fp((char *(*)())X509_new, | ||
139 | (char *(*)())d2i_X509, (fp),(unsigned char **)(x509))); | ||
140 | } | ||
141 | |||
142 | int i2d_X509_fp(FILE *fp, X509 *x509) | ||
143 | { | ||
144 | return(ASN1_i2d_fp(i2d_X509,fp,(unsigned char *)x509)); | ||
145 | } | ||
146 | #endif | ||
147 | |||
148 | X509 *d2i_X509_bio(BIO *bp, X509 **x509) | ||
149 | { | ||
150 | return((X509 *)ASN1_d2i_bio((char *(*)())X509_new, | ||
151 | (char *(*)())d2i_X509, (bp),(unsigned char **)(x509))); | ||
152 | } | ||
153 | |||
154 | int i2d_X509_bio(BIO *bp, X509 *x509) | ||
155 | { | ||
156 | return(ASN1_i2d_bio(i2d_X509,bp,(unsigned char *)x509)); | ||
157 | } | ||
158 | |||
159 | X509_CRL *X509_CRL_dup(X509_CRL *crl) | ||
160 | { | ||
161 | return((X509_CRL *)ASN1_dup((int (*)())i2d_X509_CRL, | ||
162 | (char *(*)())d2i_X509_CRL,(char *)crl)); | ||
163 | } | ||
164 | |||
165 | #ifndef NO_FP_API | ||
166 | X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl) | ||
167 | { | ||
168 | return((X509_CRL *)ASN1_d2i_fp((char *(*)()) | ||
169 | X509_CRL_new,(char *(*)())d2i_X509_CRL, (fp), | ||
170 | (unsigned char **)(crl))); | ||
171 | } | ||
172 | |||
173 | int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl) | ||
174 | { | ||
175 | return(ASN1_i2d_fp(i2d_X509_CRL,fp,(unsigned char *)crl)); | ||
176 | } | ||
177 | #endif | ||
178 | |||
179 | X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl) | ||
180 | { | ||
181 | return((X509_CRL *)ASN1_d2i_bio((char *(*)()) | ||
182 | X509_CRL_new,(char *(*)())d2i_X509_CRL, (bp), | ||
183 | (unsigned char **)(crl))); | ||
184 | } | ||
185 | |||
186 | int i2d_X509_CRL_bio(BIO *bp, X509_CRL *crl) | ||
187 | { | ||
188 | return(ASN1_i2d_bio(i2d_X509_CRL,bp,(unsigned char *)crl)); | ||
189 | } | ||
190 | |||
191 | PKCS7 *PKCS7_dup(PKCS7 *p7) | ||
192 | { | ||
193 | return((PKCS7 *)ASN1_dup((int (*)())i2d_PKCS7, | ||
194 | (char *(*)())d2i_PKCS7,(char *)p7)); | ||
195 | } | ||
196 | |||
197 | #ifndef NO_FP_API | ||
198 | PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7) | ||
199 | { | ||
200 | return((PKCS7 *)ASN1_d2i_fp((char *(*)()) | ||
201 | PKCS7_new,(char *(*)())d2i_PKCS7, (fp), | ||
202 | (unsigned char **)(p7))); | ||
203 | } | ||
204 | |||
205 | int i2d_PKCS7_fp(FILE *fp, PKCS7 *p7) | ||
206 | { | ||
207 | return(ASN1_i2d_fp(i2d_PKCS7,fp,(unsigned char *)p7)); | ||
208 | } | ||
209 | #endif | ||
210 | |||
211 | PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7) | ||
212 | { | ||
213 | return((PKCS7 *)ASN1_d2i_bio((char *(*)()) | ||
214 | PKCS7_new,(char *(*)())d2i_PKCS7, (bp), | ||
215 | (unsigned char **)(p7))); | ||
216 | } | ||
217 | |||
218 | int i2d_PKCS7_bio(BIO *bp, PKCS7 *p7) | ||
219 | { | ||
220 | return(ASN1_i2d_bio(i2d_PKCS7,bp,(unsigned char *)p7)); | ||
221 | } | ||
222 | |||
223 | X509_REQ *X509_REQ_dup(X509_REQ *req) | ||
224 | { | ||
225 | return((X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ, | ||
226 | (char *(*)())d2i_X509_REQ,(char *)req)); | ||
227 | } | ||
228 | |||
229 | #ifndef NO_FP_API | ||
230 | X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req) | ||
231 | { | ||
232 | return((X509_REQ *)ASN1_d2i_fp((char *(*)()) | ||
233 | X509_REQ_new, (char *(*)())d2i_X509_REQ, (fp), | ||
234 | (unsigned char **)(req))); | ||
235 | } | ||
236 | |||
237 | int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req) | ||
238 | { | ||
239 | return(ASN1_i2d_fp(i2d_X509_REQ,fp,(unsigned char *)req)); | ||
240 | } | ||
241 | #endif | ||
242 | |||
243 | X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req) | ||
244 | { | ||
245 | return((X509_REQ *)ASN1_d2i_bio((char *(*)()) | ||
246 | X509_REQ_new, (char *(*)())d2i_X509_REQ, (bp), | ||
247 | (unsigned char **)(req))); | ||
248 | } | ||
249 | |||
250 | int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req) | ||
251 | { | ||
252 | return(ASN1_i2d_bio(i2d_X509_REQ,bp,(unsigned char *)req)); | ||
253 | } | ||
254 | |||
255 | #ifndef NO_RSA | ||
256 | RSA *RSAPublicKey_dup(RSA *rsa) | ||
257 | { | ||
258 | return((RSA *)ASN1_dup((int (*)())i2d_RSAPublicKey, | ||
259 | (char *(*)())d2i_RSAPublicKey,(char *)rsa)); | ||
260 | } | ||
261 | |||
262 | RSA *RSAPrivateKey_dup(RSA *rsa) | ||
263 | { | ||
264 | return((RSA *)ASN1_dup((int (*)())i2d_RSAPrivateKey, | ||
265 | (char *(*)())d2i_RSAPrivateKey,(char *)rsa)); | ||
266 | } | ||
267 | |||
268 | #ifndef NO_FP_API | ||
269 | RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa) | ||
270 | { | ||
271 | return((RSA *)ASN1_d2i_fp((char *(*)()) | ||
272 | RSA_new,(char *(*)())d2i_RSAPrivateKey, (fp), | ||
273 | (unsigned char **)(rsa))); | ||
274 | } | ||
275 | |||
276 | int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa) | ||
277 | { | ||
278 | return(ASN1_i2d_fp(i2d_RSAPrivateKey,fp,(unsigned char *)rsa)); | ||
279 | } | ||
280 | |||
281 | RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa) | ||
282 | { | ||
283 | return((RSA *)ASN1_d2i_fp((char *(*)()) | ||
284 | RSA_new,(char *(*)())d2i_RSAPublicKey, (fp), | ||
285 | (unsigned char **)(rsa))); | ||
286 | } | ||
287 | |||
288 | RSA *d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa) | ||
289 | { | ||
290 | return((RSA *)ASN1_d2i_fp((char *(*)()) | ||
291 | RSA_new,(char *(*)())d2i_RSA_PUBKEY, (fp), | ||
292 | (unsigned char **)(rsa))); | ||
293 | } | ||
294 | |||
295 | int i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa) | ||
296 | { | ||
297 | return(ASN1_i2d_fp(i2d_RSAPublicKey,fp,(unsigned char *)rsa)); | ||
298 | } | ||
299 | |||
300 | int i2d_RSA_PUBKEY_fp(FILE *fp, RSA *rsa) | ||
301 | { | ||
302 | return(ASN1_i2d_fp(i2d_RSA_PUBKEY,fp,(unsigned char *)rsa)); | ||
303 | } | ||
304 | #endif | ||
305 | |||
306 | RSA *d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa) | ||
307 | { | ||
308 | return((RSA *)ASN1_d2i_bio((char *(*)()) | ||
309 | RSA_new,(char *(*)())d2i_RSAPrivateKey, (bp), | ||
310 | (unsigned char **)(rsa))); | ||
311 | } | ||
312 | |||
313 | int i2d_RSAPrivateKey_bio(BIO *bp, RSA *rsa) | ||
314 | { | ||
315 | return(ASN1_i2d_bio(i2d_RSAPrivateKey,bp,(unsigned char *)rsa)); | ||
316 | } | ||
317 | |||
318 | RSA *d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa) | ||
319 | { | ||
320 | return((RSA *)ASN1_d2i_bio((char *(*)()) | ||
321 | RSA_new,(char *(*)())d2i_RSAPublicKey, (bp), | ||
322 | (unsigned char **)(rsa))); | ||
323 | } | ||
324 | |||
325 | RSA *d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa) | ||
326 | { | ||
327 | return((RSA *)ASN1_d2i_bio((char *(*)()) | ||
328 | RSA_new,(char *(*)())d2i_RSA_PUBKEY, (bp), | ||
329 | (unsigned char **)(rsa))); | ||
330 | } | ||
331 | |||
332 | int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa) | ||
333 | { | ||
334 | return(ASN1_i2d_bio(i2d_RSAPublicKey,bp,(unsigned char *)rsa)); | ||
335 | } | ||
336 | |||
337 | int i2d_RSA_PUBKEY_bio(BIO *bp, RSA *rsa) | ||
338 | { | ||
339 | return(ASN1_i2d_bio(i2d_RSA_PUBKEY,bp,(unsigned char *)rsa)); | ||
340 | } | ||
341 | #endif | ||
342 | |||
343 | #ifndef NO_DSA | ||
344 | #ifndef NO_FP_API | ||
345 | DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa) | ||
346 | { | ||
347 | return((DSA *)ASN1_d2i_fp((char *(*)()) | ||
348 | DSA_new,(char *(*)())d2i_DSAPrivateKey, (fp), | ||
349 | (unsigned char **)(dsa))); | ||
350 | } | ||
351 | |||
352 | int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa) | ||
353 | { | ||
354 | return(ASN1_i2d_fp(i2d_DSAPrivateKey,fp,(unsigned char *)dsa)); | ||
355 | } | ||
356 | |||
357 | DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa) | ||
358 | { | ||
359 | return((DSA *)ASN1_d2i_fp((char *(*)()) | ||
360 | DSA_new,(char *(*)())d2i_DSA_PUBKEY, (fp), | ||
361 | (unsigned char **)(dsa))); | ||
362 | } | ||
363 | |||
364 | int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa) | ||
365 | { | ||
366 | return(ASN1_i2d_fp(i2d_DSA_PUBKEY,fp,(unsigned char *)dsa)); | ||
367 | } | ||
368 | #endif | ||
369 | |||
370 | DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa) | ||
371 | { | ||
372 | return((DSA *)ASN1_d2i_bio((char *(*)()) | ||
373 | DSA_new,(char *(*)())d2i_DSAPrivateKey, (bp), | ||
374 | (unsigned char **)(dsa))); | ||
375 | } | ||
376 | |||
377 | int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa) | ||
378 | { | ||
379 | return(ASN1_i2d_bio(i2d_DSAPrivateKey,bp,(unsigned char *)dsa)); | ||
380 | } | ||
381 | |||
382 | DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa) | ||
383 | { | ||
384 | return((DSA *)ASN1_d2i_bio((char *(*)()) | ||
385 | DSA_new,(char *(*)())d2i_DSA_PUBKEY, (bp), | ||
386 | (unsigned char **)(dsa))); | ||
387 | } | ||
388 | |||
389 | int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa) | ||
390 | { | ||
391 | return(ASN1_i2d_bio(i2d_DSA_PUBKEY,bp,(unsigned char *)dsa)); | ||
392 | } | ||
393 | |||
394 | #endif | ||
395 | |||
396 | X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn) | ||
397 | { | ||
398 | return((X509_ALGOR *)ASN1_dup((int (*)())i2d_X509_ALGOR, | ||
399 | (char *(*)())d2i_X509_ALGOR,(char *)xn)); | ||
400 | } | ||
401 | |||
402 | X509_NAME *X509_NAME_dup(X509_NAME *xn) | ||
403 | { | ||
404 | return((X509_NAME *)ASN1_dup((int (*)())i2d_X509_NAME, | ||
405 | (char *(*)())d2i_X509_NAME,(char *)xn)); | ||
406 | } | ||
407 | |||
408 | X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne) | ||
409 | { | ||
410 | return((X509_NAME_ENTRY *)ASN1_dup((int (*)())i2d_X509_NAME_ENTRY, | ||
411 | (char *(*)())d2i_X509_NAME_ENTRY,(char *)ne)); | ||
412 | } | ||
413 | |||
414 | int X509_digest(const X509 *data, const EVP_MD *type, unsigned char *md, | ||
415 | unsigned int *len) | ||
416 | { | ||
417 | return(ASN1_digest((int (*)())i2d_X509,type,(char *)data,md,len)); | ||
418 | } | ||
419 | |||
420 | int X509_CRL_digest(const X509_CRL *data, const EVP_MD *type, unsigned char *md, | ||
421 | unsigned int *len) | ||
422 | { | ||
423 | return(ASN1_digest((int (*)())i2d_X509_CRL,type,(char *)data,md,len)); | ||
424 | } | ||
425 | |||
426 | int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type, unsigned char *md, | ||
427 | unsigned int *len) | ||
428 | { | ||
429 | return(ASN1_digest((int (*)())i2d_X509_REQ,type,(char *)data,md,len)); | ||
430 | } | ||
431 | |||
432 | int X509_NAME_digest(const X509_NAME *data, const EVP_MD *type, unsigned char *md, | ||
433 | unsigned int *len) | ||
434 | { | ||
435 | return(ASN1_digest((int (*)())i2d_X509_NAME,type,(char *)data,md,len)); | ||
436 | } | ||
437 | |||
438 | int PKCS7_ISSUER_AND_SERIAL_digest(PKCS7_ISSUER_AND_SERIAL *data, const EVP_MD *type, | ||
439 | unsigned char *md, unsigned int *len) | ||
440 | { | ||
441 | return(ASN1_digest((int (*)())i2d_PKCS7_ISSUER_AND_SERIAL,type, | ||
442 | (char *)data,md,len)); | ||
443 | } | ||
444 | |||
445 | |||
446 | #ifndef NO_FP_API | ||
447 | X509_SIG *d2i_PKCS8_fp(FILE *fp, X509_SIG **p8) | ||
448 | { | ||
449 | return((X509_SIG *)ASN1_d2i_fp((char *(*)())X509_SIG_new, | ||
450 | (char *(*)())d2i_X509_SIG, (fp),(unsigned char **)(p8))); | ||
451 | } | ||
452 | |||
453 | int i2d_PKCS8_fp(FILE *fp, X509_SIG *p8) | ||
454 | { | ||
455 | return(ASN1_i2d_fp(i2d_X509_SIG,fp,(unsigned char *)p8)); | ||
456 | } | ||
457 | #endif | ||
458 | |||
459 | X509_SIG *d2i_PKCS8_bio(BIO *bp, X509_SIG **p8) | ||
460 | { | ||
461 | return((X509_SIG *)ASN1_d2i_bio((char *(*)())X509_SIG_new, | ||
462 | (char *(*)())d2i_X509_SIG, (bp),(unsigned char **)(p8))); | ||
463 | } | ||
464 | |||
465 | int i2d_PKCS8_bio(BIO *bp, X509_SIG *p8) | ||
466 | { | ||
467 | return(ASN1_i2d_bio(i2d_X509_SIG,bp,(unsigned char *)p8)); | ||
468 | } | ||
469 | |||
470 | #ifndef NO_FP_API | ||
471 | PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, | ||
472 | PKCS8_PRIV_KEY_INFO **p8inf) | ||
473 | { | ||
474 | return((PKCS8_PRIV_KEY_INFO *)ASN1_d2i_fp( | ||
475 | (char *(*)())PKCS8_PRIV_KEY_INFO_new, | ||
476 | (char *(*)())d2i_PKCS8_PRIV_KEY_INFO, (fp), | ||
477 | (unsigned char **)(p8inf))); | ||
478 | } | ||
479 | |||
480 | int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, PKCS8_PRIV_KEY_INFO *p8inf) | ||
481 | { | ||
482 | return(ASN1_i2d_fp(i2d_PKCS8_PRIV_KEY_INFO,fp,(unsigned char *)p8inf)); | ||
483 | } | ||
484 | |||
485 | int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key) | ||
486 | { | ||
487 | PKCS8_PRIV_KEY_INFO *p8inf; | ||
488 | int ret; | ||
489 | p8inf = EVP_PKEY2PKCS8(key); | ||
490 | if(!p8inf) return 0; | ||
491 | ret = i2d_PKCS8_PRIV_KEY_INFO_fp(fp, p8inf); | ||
492 | PKCS8_PRIV_KEY_INFO_free(p8inf); | ||
493 | return ret; | ||
494 | } | ||
495 | |||
496 | int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey) | ||
497 | { | ||
498 | return(ASN1_i2d_fp(i2d_PrivateKey,fp,(unsigned char *)pkey)); | ||
499 | } | ||
500 | |||
501 | EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a) | ||
502 | { | ||
503 | return((EVP_PKEY *)ASN1_d2i_fp((char *(*)())EVP_PKEY_new, | ||
504 | (char *(*)())d2i_AutoPrivateKey, (fp),(unsigned char **)(a))); | ||
505 | } | ||
506 | |||
507 | int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey) | ||
508 | { | ||
509 | return(ASN1_i2d_fp(i2d_PUBKEY,fp,(unsigned char *)pkey)); | ||
510 | } | ||
511 | |||
512 | EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a) | ||
513 | { | ||
514 | return((EVP_PKEY *)ASN1_d2i_fp((char *(*)())EVP_PKEY_new, | ||
515 | (char *(*)())d2i_PUBKEY, (fp),(unsigned char **)(a))); | ||
516 | } | ||
517 | |||
518 | #endif | ||
519 | |||
520 | PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, | ||
521 | PKCS8_PRIV_KEY_INFO **p8inf) | ||
522 | { | ||
523 | return((PKCS8_PRIV_KEY_INFO *)ASN1_d2i_bio( | ||
524 | (char *(*)())PKCS8_PRIV_KEY_INFO_new, | ||
525 | (char *(*)())d2i_PKCS8_PRIV_KEY_INFO, (bp), | ||
526 | (unsigned char **)(p8inf))); | ||
527 | } | ||
528 | |||
529 | int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, PKCS8_PRIV_KEY_INFO *p8inf) | ||
530 | { | ||
531 | return(ASN1_i2d_bio(i2d_PKCS8_PRIV_KEY_INFO,bp,(unsigned char *)p8inf)); | ||
532 | } | ||
533 | |||
534 | int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key) | ||
535 | { | ||
536 | PKCS8_PRIV_KEY_INFO *p8inf; | ||
537 | int ret; | ||
538 | p8inf = EVP_PKEY2PKCS8(key); | ||
539 | if(!p8inf) return 0; | ||
540 | ret = i2d_PKCS8_PRIV_KEY_INFO_bio(bp, p8inf); | ||
541 | PKCS8_PRIV_KEY_INFO_free(p8inf); | ||
542 | return ret; | ||
543 | } | ||
544 | |||
545 | int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey) | ||
546 | { | ||
547 | return(ASN1_i2d_bio(i2d_PrivateKey,bp,(unsigned char *)pkey)); | ||
548 | } | ||
549 | |||
550 | EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a) | ||
551 | { | ||
552 | return((EVP_PKEY *)ASN1_d2i_bio((char *(*)())EVP_PKEY_new, | ||
553 | (char *(*)())d2i_AutoPrivateKey, (bp),(unsigned char **)(a))); | ||
554 | } | ||
555 | |||
556 | int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey) | ||
557 | { | ||
558 | return(ASN1_i2d_bio(i2d_PUBKEY,bp,(unsigned char *)pkey)); | ||
559 | } | ||
560 | |||
561 | EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a) | ||
562 | { | ||
563 | return((EVP_PKEY *)ASN1_d2i_bio((char *(*)())EVP_PKEY_new, | ||
564 | (char *(*)())d2i_PUBKEY, (bp),(unsigned char **)(a))); | ||
565 | } | ||