diff options
author | cvs2svn <admin@example.com> | 2002-03-12 00:05:45 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2002-03-12 00:05:45 +0000 |
commit | 3779f2f4a8b544a7e4c362915322726b66cff114 (patch) | |
tree | b6d77e66cbfdf6c0d8953fba2917f26f86fa50f6 /src/lib/libcrypto/x509/x509.h | |
parent | f39945c2b3b0f9e4950384bdb8effdac6eed9199 (diff) | |
download | openbsd-OPENBSD_3_1_BASE.tar.gz openbsd-OPENBSD_3_1_BASE.tar.bz2 openbsd-OPENBSD_3_1_BASE.zip |
This commit was manufactured by cvs2git to create tag 'OPENBSD_3_1_BASE'.OPENBSD_3_1_BASE
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 1294 |
1 files changed, 0 insertions, 1294 deletions
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 | |||