1 /* $OpenBSD: x509.h,v 1.75 2021/03/31 16:51:06 tb Exp $ */ 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 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. 60 * ECDH support in OpenSSL originally developed by 61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. 62 */ 63 64 #ifndef HEADER_X509_H 65 #define HEADER_X509_H 66 67 #include <openssl/opensslconf.h> 68 69 #ifndef OPENSSL_NO_BUFFER 70 #include <openssl/buffer.h> 71 #endif 72 #ifndef OPENSSL_NO_EVP 73 #include <openssl/evp.h> 74 #endif 75 #ifndef OPENSSL_NO_BIO 76 #include <openssl/bio.h> 77 #endif 78 #include <openssl/stack.h> 79 #include <openssl/asn1.h> 80 #include <openssl/safestack.h> 81 82 #ifndef OPENSSL_NO_EC 83 #include <openssl/ec.h> 84 #endif 85 86 #ifndef OPENSSL_NO_ECDSA 87 #include <openssl/ecdsa.h> 88 #endif 89 90 #ifndef OPENSSL_NO_ECDH 91 #include <openssl/ecdh.h> 92 #endif 93 94 #ifndef OPENSSL_NO_DEPRECATED 95 #ifndef OPENSSL_NO_RSA 96 #include <openssl/rsa.h> 97 #endif 98 #ifndef OPENSSL_NO_DSA 99 #include <openssl/dsa.h> 100 #endif 101 #ifndef OPENSSL_NO_DH 102 #include <openssl/dh.h> 103 #endif 104 #endif 105 106 #ifndef OPENSSL_NO_SHA 107 #include <openssl/sha.h> 108 #endif 109 #include <openssl/ossl_typ.h> 110 111 #ifdef __cplusplus 112 extern "C" { 113 #endif 114 115 #define X509_FILETYPE_PEM 1 116 #define X509_FILETYPE_ASN1 2 117 #define X509_FILETYPE_DEFAULT 3 118 119 #define X509v3_KU_DIGITAL_SIGNATURE 0x0080 120 #define X509v3_KU_NON_REPUDIATION 0x0040 121 #define X509v3_KU_KEY_ENCIPHERMENT 0x0020 122 #define X509v3_KU_DATA_ENCIPHERMENT 0x0010 123 #define X509v3_KU_KEY_AGREEMENT 0x0008 124 #define X509v3_KU_KEY_CERT_SIGN 0x0004 125 #define X509v3_KU_CRL_SIGN 0x0002 126 #define X509v3_KU_ENCIPHER_ONLY 0x0001 127 #define X509v3_KU_DECIPHER_ONLY 0x8000 128 #define X509v3_KU_UNDEF 0xffff 129 130 typedef struct X509_objects_st 131 { 132 int nid; 133 int (*a2i)(void); 134 int (*i2a)(void); 135 } X509_OBJECTS; 136 137 struct X509_algor_st 138 { 139 ASN1_OBJECT *algorithm; 140 ASN1_TYPE *parameter; 141 } /* X509_ALGOR */; 142 143 144 typedef STACK_OF(X509_ALGOR) X509_ALGORS; 145 146 typedef struct X509_val_st 147 { 148 ASN1_TIME *notBefore; 149 ASN1_TIME *notAfter; 150 } X509_VAL; 151 152 struct X509_pubkey_st 153 { 154 X509_ALGOR *algor; 155 ASN1_BIT_STRING *public_key; 156 EVP_PKEY *pkey; 157 }; 158 159 typedef struct X509_sig_st 160 { 161 X509_ALGOR *algor; 162 ASN1_OCTET_STRING *digest; 163 } X509_SIG; 164 165 typedef struct X509_name_entry_st 166 { 167 ASN1_OBJECT *object; 168 ASN1_STRING *value; 169 int set; 170 int size; /* temp variable */ 171 } X509_NAME_ENTRY; 172 173 DECLARE_STACK_OF(X509_NAME_ENTRY) 174 175 /* we always keep X509_NAMEs in 2 forms. */ 176 struct X509_name_st 177 { 178 STACK_OF(X509_NAME_ENTRY) *entries; 179 int modified; /* true if 'bytes' needs to be built */ 180 #ifndef OPENSSL_NO_BUFFER 181 BUF_MEM *bytes; 182 #else 183 char *bytes; 184 #endif 185 /* unsigned long hash; Keep the hash around for lookups */ 186 unsigned char *canon_enc; 187 int canon_enclen; 188 } /* X509_NAME */; 189 190 DECLARE_STACK_OF(X509_NAME) 191 192 #define X509_EX_V_NETSCAPE_HACK 0x8000 193 #define X509_EX_V_INIT 0x0001 194 typedef struct X509_extension_st 195 { 196 ASN1_OBJECT *object; 197 ASN1_BOOLEAN critical; 198 ASN1_OCTET_STRING *value; 199 } X509_EXTENSION; 200 201 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS; 202 203 DECLARE_STACK_OF(X509_EXTENSION) 204 205 /* a sequence of these are used */ 206 typedef struct x509_attributes_st 207 { 208 ASN1_OBJECT *object; 209 int single; /* 0 for a set, 1 for a single item (which is wrong) */ 210 union { 211 char *ptr; 212 /* 0 */ STACK_OF(ASN1_TYPE) *set; 213 /* 1 */ ASN1_TYPE *single; 214 } value; 215 } X509_ATTRIBUTE; 216 217 DECLARE_STACK_OF(X509_ATTRIBUTE) 218 219 220 typedef struct X509_req_info_st 221 { 222 ASN1_ENCODING enc; 223 ASN1_INTEGER *version; 224 X509_NAME *subject; 225 X509_PUBKEY *pubkey; 226 /* d=2 hl=2 l= 0 cons: cont: 00 */ 227 STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */ 228 } X509_REQ_INFO; 229 230 typedef struct X509_req_st 231 { 232 X509_REQ_INFO *req_info; 233 X509_ALGOR *sig_alg; 234 ASN1_BIT_STRING *signature; 235 int references; 236 } X509_REQ; 237 238 typedef struct x509_cinf_st 239 { 240 ASN1_INTEGER *version; /* [ 0 ] default of v1 */ 241 ASN1_INTEGER *serialNumber; 242 X509_ALGOR *signature; 243 X509_NAME *issuer; 244 X509_VAL *validity; 245 X509_NAME *subject; 246 X509_PUBKEY *key; 247 ASN1_BIT_STRING *issuerUID; /* [ 1 ] optional in v2 */ 248 ASN1_BIT_STRING *subjectUID; /* [ 2 ] optional in v2 */ 249 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ 250 ASN1_ENCODING enc; 251 } X509_CINF; 252 253 /* This stuff is certificate "auxiliary info" 254 * it contains details which are useful in certificate 255 * stores and databases. When used this is tagged onto 256 * the end of the certificate itself 257 */ 258 259 typedef struct x509_cert_aux_st 260 { 261 STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ 262 STACK_OF(ASN1_OBJECT) *reject; /* rejected uses */ 263 ASN1_UTF8STRING *alias; /* "friendly name" */ 264 ASN1_OCTET_STRING *keyid; /* key id of private key */ 265 STACK_OF(X509_ALGOR) *other; /* other unspecified info */ 266 } X509_CERT_AUX; 267 268 struct x509_st 269 { 270 X509_CINF *cert_info; 271 X509_ALGOR *sig_alg; 272 ASN1_BIT_STRING *signature; 273 int valid; 274 int references; 275 char *name; 276 CRYPTO_EX_DATA ex_data; 277 /* These contain copies of various extension values */ 278 long ex_pathlen; 279 long ex_pcpathlen; 280 unsigned long ex_flags; 281 unsigned long ex_kusage; 282 unsigned long ex_xkusage; 283 unsigned long ex_nscert; 284 ASN1_OCTET_STRING *skid; 285 AUTHORITY_KEYID *akid; 286 X509_POLICY_CACHE *policy_cache; 287 STACK_OF(DIST_POINT) *crldp; 288 STACK_OF(GENERAL_NAME) *altname; 289 NAME_CONSTRAINTS *nc; 290 #ifndef OPENSSL_NO_SHA 291 unsigned char sha1_hash[SHA_DIGEST_LENGTH]; 292 #endif 293 X509_CERT_AUX *aux; 294 } /* X509 */; 295 296 DECLARE_STACK_OF(X509) 297 298 /* This is used for a table of trust checking functions */ 299 300 typedef struct x509_trust_st { 301 int trust; 302 int flags; 303 int (*check_trust)(struct x509_trust_st *, X509 *, int); 304 char *name; 305 int arg1; 306 void *arg2; 307 } X509_TRUST; 308 309 DECLARE_STACK_OF(X509_TRUST) 310 311 typedef struct x509_cert_pair_st { 312 X509 *forward; 313 X509 *reverse; 314 } X509_CERT_PAIR; 315 316 /* standard trust ids */ 317 318 #define X509_TRUST_DEFAULT -1 /* Only valid in purpose settings */ 319 320 #define X509_TRUST_COMPAT 1 321 #define X509_TRUST_SSL_CLIENT 2 322 #define X509_TRUST_SSL_SERVER 3 323 #define X509_TRUST_EMAIL 4 324 #define X509_TRUST_OBJECT_SIGN 5 325 #define X509_TRUST_OCSP_SIGN 6 326 #define X509_TRUST_OCSP_REQUEST 7 327 #define X509_TRUST_TSA 8 328 329 /* Keep these up to date! */ 330 #define X509_TRUST_MIN 1 331 #define X509_TRUST_MAX 8 332 333 334 /* trust_flags values */ 335 #define X509_TRUST_DYNAMIC 1 336 #define X509_TRUST_DYNAMIC_NAME 2 337 338 /* check_trust return codes */ 339 340 #define X509_TRUST_TRUSTED 1 341 #define X509_TRUST_REJECTED 2 342 #define X509_TRUST_UNTRUSTED 3 343 344 /* Flags for X509_print_ex() */ 345 346 #define X509_FLAG_COMPAT 0 347 #define X509_FLAG_NO_HEADER 1L 348 #define X509_FLAG_NO_VERSION (1L << 1) 349 #define X509_FLAG_NO_SERIAL (1L << 2) 350 #define X509_FLAG_NO_SIGNAME (1L << 3) 351 #define X509_FLAG_NO_ISSUER (1L << 4) 352 #define X509_FLAG_NO_VALIDITY (1L << 5) 353 #define X509_FLAG_NO_SUBJECT (1L << 6) 354 #define X509_FLAG_NO_PUBKEY (1L << 7) 355 #define X509_FLAG_NO_EXTENSIONS (1L << 8) 356 #define X509_FLAG_NO_SIGDUMP (1L << 9) 357 #define X509_FLAG_NO_AUX (1L << 10) 358 #define X509_FLAG_NO_ATTRIBUTES (1L << 11) 359 360 /* Flags specific to X509_NAME_print_ex() */ 361 362 /* The field separator information */ 363 364 #define XN_FLAG_SEP_MASK (0xf << 16) 365 366 #define XN_FLAG_COMPAT 0 /* Traditional SSLeay: use old X509_NAME_print */ 367 #define XN_FLAG_SEP_COMMA_PLUS (1 << 16) /* RFC2253 ,+ */ 368 #define XN_FLAG_SEP_CPLUS_SPC (2 << 16) /* ,+ spaced: more readable */ 369 #define XN_FLAG_SEP_SPLUS_SPC (3 << 16) /* ;+ spaced */ 370 #define XN_FLAG_SEP_MULTILINE (4 << 16) /* One line per field */ 371 372 #define XN_FLAG_DN_REV (1 << 20) /* Reverse DN order */ 373 374 /* How the field name is shown */ 375 376 #define XN_FLAG_FN_MASK (0x3 << 21) 377 378 #define XN_FLAG_FN_SN 0 /* Object short name */ 379 #define XN_FLAG_FN_LN (1 << 21) /* Object long name */ 380 #define XN_FLAG_FN_OID (2 << 21) /* Always use OIDs */ 381 #define XN_FLAG_FN_NONE (3 << 21) /* No field names */ 382 383 #define XN_FLAG_SPC_EQ (1 << 23) /* Put spaces round '=' */ 384 385 /* This determines if we dump fields we don't recognise: 386 * RFC2253 requires this. 387 */ 388 389 #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24) 390 391 #define XN_FLAG_FN_ALIGN (1 << 25) /* Align field names to 20 characters */ 392 393 /* Complete set of RFC2253 flags */ 394 395 #define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \ 396 XN_FLAG_SEP_COMMA_PLUS | \ 397 XN_FLAG_DN_REV | \ 398 XN_FLAG_FN_SN | \ 399 XN_FLAG_DUMP_UNKNOWN_FIELDS) 400 401 /* readable oneline form */ 402 403 #define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \ 404 ASN1_STRFLGS_ESC_QUOTE | \ 405 XN_FLAG_SEP_CPLUS_SPC | \ 406 XN_FLAG_SPC_EQ | \ 407 XN_FLAG_FN_SN) 408 409 /* readable multiline form */ 410 411 #define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \ 412 ASN1_STRFLGS_ESC_MSB | \ 413 XN_FLAG_SEP_MULTILINE | \ 414 XN_FLAG_SPC_EQ | \ 415 XN_FLAG_FN_LN | \ 416 XN_FLAG_FN_ALIGN) 417 418 struct x509_revoked_st 419 { 420 ASN1_INTEGER *serialNumber; 421 ASN1_TIME *revocationDate; 422 STACK_OF(X509_EXTENSION) /* optional */ *extensions; 423 /* Set up if indirect CRL */ 424 STACK_OF(GENERAL_NAME) *issuer; 425 /* Revocation reason */ 426 int reason; 427 int sequence; /* load sequence */ 428 }; 429 430 DECLARE_STACK_OF(X509_REVOKED) 431 432 typedef struct X509_crl_info_st 433 { 434 ASN1_INTEGER *version; 435 X509_ALGOR *sig_alg; 436 X509_NAME *issuer; 437 ASN1_TIME *lastUpdate; 438 ASN1_TIME *nextUpdate; 439 STACK_OF(X509_REVOKED) *revoked; 440 STACK_OF(X509_EXTENSION) /* [0] */ *extensions; 441 ASN1_ENCODING enc; 442 } X509_CRL_INFO; 443 444 struct X509_crl_st 445 { 446 /* actual signature */ 447 X509_CRL_INFO *crl; 448 X509_ALGOR *sig_alg; 449 ASN1_BIT_STRING *signature; 450 int references; 451 int flags; 452 /* Copies of various extensions */ 453 AUTHORITY_KEYID *akid; 454 ISSUING_DIST_POINT *idp; 455 /* Convenient breakdown of IDP */ 456 int idp_flags; 457 int idp_reasons; 458 /* CRL and base CRL numbers for delta processing */ 459 ASN1_INTEGER *crl_number; 460 ASN1_INTEGER *base_crl_number; 461 #ifndef OPENSSL_NO_SHA 462 unsigned char sha1_hash[SHA_DIGEST_LENGTH]; 463 #endif 464 STACK_OF(GENERAL_NAMES) *issuers; 465 const X509_CRL_METHOD *meth; 466 void *meth_data; 467 } /* X509_CRL */; 468 469 DECLARE_STACK_OF(X509_CRL) 470 471 typedef struct private_key_st 472 { 473 int version; 474 /* The PKCS#8 data types */ 475 X509_ALGOR *enc_algor; 476 ASN1_OCTET_STRING *enc_pkey; /* encrypted pub key */ 477 478 /* When decrypted, the following will not be NULL */ 479 EVP_PKEY *dec_pkey; 480 481 /* used to encrypt and decrypt */ 482 int key_length; 483 char *key_data; 484 int key_free; /* true if we should auto free key_data */ 485 486 /* expanded version of 'enc_algor' */ 487 EVP_CIPHER_INFO cipher; 488 489 int references; 490 } X509_PKEY; 491 492 #ifndef OPENSSL_NO_EVP 493 typedef struct X509_info_st 494 { 495 X509 *x509; 496 X509_CRL *crl; 497 X509_PKEY *x_pkey; 498 499 EVP_CIPHER_INFO enc_cipher; 500 int enc_len; 501 char *enc_data; 502 503 int references; 504 } X509_INFO; 505 506 DECLARE_STACK_OF(X509_INFO) 507 #endif 508 509 /* The next 2 structures and their 8 routines were sent to me by 510 * Pat Richard <patr@x509.com> and are used to manipulate 511 * Netscapes spki structures - useful if you are writing a CA web page 512 */ 513 typedef struct Netscape_spkac_st 514 { 515 X509_PUBKEY *pubkey; 516 ASN1_IA5STRING *challenge; /* challenge sent in atlas >= PR2 */ 517 } NETSCAPE_SPKAC; 518 519 typedef struct Netscape_spki_st 520 { 521 NETSCAPE_SPKAC *spkac; /* signed public key and challenge */ 522 X509_ALGOR *sig_algor; 523 ASN1_BIT_STRING *signature; 524 } NETSCAPE_SPKI; 525 526 /* Netscape certificate sequence structure */ 527 typedef struct Netscape_certificate_sequence 528 { 529 ASN1_OBJECT *type; 530 STACK_OF(X509) *certs; 531 } NETSCAPE_CERT_SEQUENCE; 532 533 /* Unused (and iv length is wrong) 534 typedef struct CBCParameter_st 535 { 536 unsigned char iv[8]; 537 } CBC_PARAM; 538 */ 539 540 /* Password based encryption structure */ 541 542 typedef struct PBEPARAM_st { 543 ASN1_OCTET_STRING *salt; 544 ASN1_INTEGER *iter; 545 } PBEPARAM; 546 547 /* Password based encryption V2 structures */ 548 549 typedef struct PBE2PARAM_st { 550 X509_ALGOR *keyfunc; 551 X509_ALGOR *encryption; 552 } PBE2PARAM; 553 554 typedef struct PBKDF2PARAM_st { 555 ASN1_TYPE *salt; /* Usually OCTET STRING but could be anything */ 556 ASN1_INTEGER *iter; 557 ASN1_INTEGER *keylength; 558 X509_ALGOR *prf; 559 } PBKDF2PARAM; 560 561 562 /* PKCS#8 private key info structure */ 563 564 struct pkcs8_priv_key_info_st { 565 ASN1_INTEGER *version; 566 X509_ALGOR *pkeyalg; 567 ASN1_OCTET_STRING *pkey; 568 STACK_OF(X509_ATTRIBUTE) *attributes; 569 }; 570 571 #ifdef __cplusplus 572 } 573 #endif 574 575 #include <openssl/x509_vfy.h> 576 #include <openssl/pkcs7.h> 577 578 #ifdef __cplusplus 579 extern "C" { 580 #endif 581 582 #define X509_EXT_PACK_UNKNOWN 1 583 #define X509_EXT_PACK_STRING 2 584 585 #define X509_extract_key(x) X509_get_pubkey(x) /*****/ 586 #define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a) 587 #define X509_name_cmp(a,b) X509_NAME_cmp((a),(b)) 588 589 int X509_CRL_up_ref(X509_CRL *x); 590 int X509_CRL_get_signature_nid(const X509_CRL *crl); 591 592 const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl); 593 long X509_CRL_get_version(const X509_CRL *crl); 594 const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl); 595 const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl); 596 ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl); 597 ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl); 598 X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl); 599 STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl); 600 void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig, 601 const X509_ALGOR **palg); 602 603 int X509_REQ_get_signature_nid(const X509_REQ *req); 604 605 void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig, 606 const X509_ALGOR **palg); 607 608 void X509_CRL_set_default_method(const X509_CRL_METHOD *meth); 609 X509_CRL_METHOD *X509_CRL_METHOD_new( 610 int (*crl_init)(X509_CRL *crl), 611 int (*crl_free)(X509_CRL *crl), 612 int (*crl_lookup)(X509_CRL *crl, X509_REVOKED **ret, 613 ASN1_INTEGER *ser, X509_NAME *issuer), 614 int (*crl_verify)(X509_CRL *crl, EVP_PKEY *pk)); 615 void X509_CRL_METHOD_free(X509_CRL_METHOD *m); 616 617 void X509_CRL_set_meth_data(X509_CRL *crl, void *dat); 618 void *X509_CRL_get_meth_data(X509_CRL *crl); 619 620 /* This one is only used so that a binary form can output, as in 621 * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */ 622 #define X509_get_X509_PUBKEY(x) ((x)->cert_info->key) 623 624 625 const char *X509_verify_cert_error_string(long n); 626 627 #ifndef OPENSSL_NO_EVP 628 int X509_verify(X509 *a, EVP_PKEY *r); 629 630 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r); 631 int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r); 632 int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r); 633 634 NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len); 635 char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x); 636 EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x); 637 int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey); 638 639 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki); 640 641 int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent); 642 int X509_signature_print(BIO *bp, const X509_ALGOR *alg, 643 const ASN1_STRING *sig); 644 645 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); 646 int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx); 647 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md); 648 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx); 649 int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md); 650 int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx); 651 int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md); 652 653 int X509_pubkey_digest(const X509 *data,const EVP_MD *type, 654 unsigned char *md, unsigned int *len); 655 int X509_digest(const X509 *data,const EVP_MD *type, 656 unsigned char *md, unsigned int *len); 657 int X509_CRL_digest(const X509_CRL *data,const EVP_MD *type, 658 unsigned char *md, unsigned int *len); 659 int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type, 660 unsigned char *md, unsigned int *len); 661 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type, 662 unsigned char *md, unsigned int *len); 663 #endif 664 665 X509 *d2i_X509_fp(FILE *fp, X509 **x509); 666 int i2d_X509_fp(FILE *fp,X509 *x509); 667 X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL **crl); 668 int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl); 669 X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req); 670 int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req); 671 #ifndef OPENSSL_NO_RSA 672 RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA **rsa); 673 int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa); 674 RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA **rsa); 675 int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa); 676 RSA *d2i_RSA_PUBKEY_fp(FILE *fp,RSA **rsa); 677 int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa); 678 #endif 679 #ifndef OPENSSL_NO_DSA 680 DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa); 681 int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa); 682 DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa); 683 int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa); 684 #endif 685 #ifndef OPENSSL_NO_EC 686 EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey); 687 int i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey); 688 EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey); 689 int i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey); 690 #endif 691 X509_SIG *d2i_PKCS8_fp(FILE *fp,X509_SIG **p8); 692 int i2d_PKCS8_fp(FILE *fp,X509_SIG *p8); 693 PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, 694 PKCS8_PRIV_KEY_INFO **p8inf); 695 int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,PKCS8_PRIV_KEY_INFO *p8inf); 696 int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key); 697 int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey); 698 EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a); 699 int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey); 700 EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a); 701 702 #ifndef OPENSSL_NO_BIO 703 X509 *d2i_X509_bio(BIO *bp,X509 **x509); 704 int i2d_X509_bio(BIO *bp,X509 *x509); 705 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl); 706 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl); 707 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req); 708 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req); 709 #ifndef OPENSSL_NO_RSA 710 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa); 711 int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa); 712 RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa); 713 int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa); 714 RSA *d2i_RSA_PUBKEY_bio(BIO *bp,RSA **rsa); 715 int i2d_RSA_PUBKEY_bio(BIO *bp,RSA *rsa); 716 #endif 717 #ifndef OPENSSL_NO_DSA 718 DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa); 719 int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa); 720 DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa); 721 int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa); 722 #endif 723 #ifndef OPENSSL_NO_EC 724 EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey); 725 int i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey); 726 EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey); 727 int i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey); 728 #endif 729 X509_SIG *d2i_PKCS8_bio(BIO *bp,X509_SIG **p8); 730 int i2d_PKCS8_bio(BIO *bp,X509_SIG *p8); 731 PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, 732 PKCS8_PRIV_KEY_INFO **p8inf); 733 int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,PKCS8_PRIV_KEY_INFO *p8inf); 734 int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key); 735 int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey); 736 EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a); 737 int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey); 738 EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a); 739 #endif 740 741 X509 *X509_dup(X509 *x509); 742 X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa); 743 X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex); 744 X509_CRL *X509_CRL_dup(X509_CRL *crl); 745 X509_REQ *X509_REQ_dup(X509_REQ *req); 746 X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn); 747 int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *aobj, int ptype, void *pval); 748 void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype, const void **ppval, 749 const X509_ALGOR *algor); 750 void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); 751 int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); 752 753 X509_NAME *X509_NAME_dup(X509_NAME *xn); 754 int X509_NAME_get0_der(X509_NAME *nm, const unsigned char **pder, size_t *pderlen); 755 X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); 756 757 int X509_cmp_time(const ASN1_TIME *s, time_t *t); 758 int X509_cmp_current_time(const ASN1_TIME *s); 759 ASN1_TIME * X509_time_adj(ASN1_TIME *s, long adj, time_t *t); 760 ASN1_TIME * X509_time_adj_ex(ASN1_TIME *s, 761 int offset_day, long offset_sec, time_t *t); 762 ASN1_TIME * X509_gmtime_adj(ASN1_TIME *s, long adj); 763 764 const char * X509_get_default_cert_area(void ); 765 const char * X509_get_default_cert_dir(void ); 766 const char * X509_get_default_cert_file(void ); 767 const char * X509_get_default_cert_dir_env(void ); 768 const char * X509_get_default_cert_file_env(void ); 769 const char * X509_get_default_private_dir(void ); 770 771 X509_REQ * X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); 772 X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey); 773 774 X509_ALGOR *X509_ALGOR_new(void); 775 void X509_ALGOR_free(X509_ALGOR *a); 776 X509_ALGOR *d2i_X509_ALGOR(X509_ALGOR **a, const unsigned char **in, long len); 777 int i2d_X509_ALGOR(X509_ALGOR *a, unsigned char **out); 778 extern const ASN1_ITEM X509_ALGOR_it; 779 X509_ALGORS *d2i_X509_ALGORS(X509_ALGORS **a, const unsigned char **in, long len); 780 int i2d_X509_ALGORS(X509_ALGORS *a, unsigned char **out); 781 extern const ASN1_ITEM X509_ALGORS_it; 782 X509_VAL *X509_VAL_new(void); 783 void X509_VAL_free(X509_VAL *a); 784 X509_VAL *d2i_X509_VAL(X509_VAL **a, const unsigned char **in, long len); 785 int i2d_X509_VAL(X509_VAL *a, unsigned char **out); 786 extern const ASN1_ITEM X509_VAL_it; 787 788 X509_PUBKEY *X509_PUBKEY_new(void); 789 void X509_PUBKEY_free(X509_PUBKEY *a); 790 X509_PUBKEY *d2i_X509_PUBKEY(X509_PUBKEY **a, const unsigned char **in, long len); 791 int i2d_X509_PUBKEY(X509_PUBKEY *a, unsigned char **out); 792 extern const ASN1_ITEM X509_PUBKEY_it; 793 794 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey); 795 EVP_PKEY * X509_PUBKEY_get(X509_PUBKEY *key); 796 EVP_PKEY * X509_PUBKEY_get0(X509_PUBKEY *key); 797 int X509_get_pubkey_parameters(EVP_PKEY *pkey, 798 STACK_OF(X509) *chain); 799 int i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp); 800 EVP_PKEY * d2i_PUBKEY(EVP_PKEY **a,const unsigned char **pp, 801 long length); 802 #ifndef OPENSSL_NO_RSA 803 int i2d_RSA_PUBKEY(RSA *a,unsigned char **pp); 804 RSA * d2i_RSA_PUBKEY(RSA **a,const unsigned char **pp, 805 long length); 806 #endif 807 #ifndef OPENSSL_NO_DSA 808 int i2d_DSA_PUBKEY(DSA *a,unsigned char **pp); 809 DSA * d2i_DSA_PUBKEY(DSA **a,const unsigned char **pp, 810 long length); 811 #endif 812 #ifndef OPENSSL_NO_EC 813 int i2d_EC_PUBKEY(EC_KEY *a, unsigned char **pp); 814 EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, 815 long length); 816 #endif 817 818 X509_SIG *X509_SIG_new(void); 819 void X509_SIG_free(X509_SIG *a); 820 X509_SIG *d2i_X509_SIG(X509_SIG **a, const unsigned char **in, long len); 821 int i2d_X509_SIG(X509_SIG *a, unsigned char **out); 822 extern const ASN1_ITEM X509_SIG_it; 823 X509_REQ_INFO *X509_REQ_INFO_new(void); 824 void X509_REQ_INFO_free(X509_REQ_INFO *a); 825 X509_REQ_INFO *d2i_X509_REQ_INFO(X509_REQ_INFO **a, const unsigned char **in, long len); 826 int i2d_X509_REQ_INFO(X509_REQ_INFO *a, unsigned char **out); 827 extern const ASN1_ITEM X509_REQ_INFO_it; 828 X509_REQ *X509_REQ_new(void); 829 void X509_REQ_free(X509_REQ *a); 830 X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **in, long len); 831 int i2d_X509_REQ(X509_REQ *a, unsigned char **out); 832 extern const ASN1_ITEM X509_REQ_it; 833 834 X509_ATTRIBUTE *X509_ATTRIBUTE_new(void); 835 void X509_ATTRIBUTE_free(X509_ATTRIBUTE *a); 836 X509_ATTRIBUTE *d2i_X509_ATTRIBUTE(X509_ATTRIBUTE **a, const unsigned char **in, long len); 837 int i2d_X509_ATTRIBUTE(X509_ATTRIBUTE *a, unsigned char **out); 838 extern const ASN1_ITEM X509_ATTRIBUTE_it; 839 X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value); 840 841 X509_EXTENSION *X509_EXTENSION_new(void); 842 void X509_EXTENSION_free(X509_EXTENSION *a); 843 X509_EXTENSION *d2i_X509_EXTENSION(X509_EXTENSION **a, const unsigned char **in, long len); 844 int i2d_X509_EXTENSION(X509_EXTENSION *a, unsigned char **out); 845 extern const ASN1_ITEM X509_EXTENSION_it; 846 X509_EXTENSIONS *d2i_X509_EXTENSIONS(X509_EXTENSIONS **a, const unsigned char **in, long len); 847 int i2d_X509_EXTENSIONS(X509_EXTENSIONS *a, unsigned char **out); 848 extern const ASN1_ITEM X509_EXTENSIONS_it; 849 850 X509_NAME_ENTRY *X509_NAME_ENTRY_new(void); 851 void X509_NAME_ENTRY_free(X509_NAME_ENTRY *a); 852 X509_NAME_ENTRY *d2i_X509_NAME_ENTRY(X509_NAME_ENTRY **a, const unsigned char **in, long len); 853 int i2d_X509_NAME_ENTRY(X509_NAME_ENTRY *a, unsigned char **out); 854 extern const ASN1_ITEM X509_NAME_ENTRY_it; 855 856 X509_NAME *X509_NAME_new(void); 857 void X509_NAME_free(X509_NAME *a); 858 X509_NAME *d2i_X509_NAME(X509_NAME **a, const unsigned char **in, long len); 859 int i2d_X509_NAME(X509_NAME *a, unsigned char **out); 860 extern const ASN1_ITEM X509_NAME_it; 861 862 int X509_NAME_set(X509_NAME **xn, X509_NAME *name); 863 864 X509_CINF *X509_CINF_new(void); 865 void X509_CINF_free(X509_CINF *a); 866 X509_CINF *d2i_X509_CINF(X509_CINF **a, const unsigned char **in, long len); 867 int i2d_X509_CINF(X509_CINF *a, unsigned char **out); 868 extern const ASN1_ITEM X509_CINF_it; 869 870 X509 *X509_new(void); 871 void X509_free(X509 *a); 872 X509 *d2i_X509(X509 **a, const unsigned char **in, long len); 873 int i2d_X509(X509 *a, unsigned char **out); 874 extern const ASN1_ITEM X509_it; 875 X509_CERT_AUX *X509_CERT_AUX_new(void); 876 void X509_CERT_AUX_free(X509_CERT_AUX *a); 877 X509_CERT_AUX *d2i_X509_CERT_AUX(X509_CERT_AUX **a, const unsigned char **in, long len); 878 int i2d_X509_CERT_AUX(X509_CERT_AUX *a, unsigned char **out); 879 extern const ASN1_ITEM X509_CERT_AUX_it; 880 881 X509_CERT_PAIR *X509_CERT_PAIR_new(void); 882 void X509_CERT_PAIR_free(X509_CERT_PAIR *a); 883 X509_CERT_PAIR *d2i_X509_CERT_PAIR(X509_CERT_PAIR **a, const unsigned char **in, long len); 884 int i2d_X509_CERT_PAIR(X509_CERT_PAIR *a, unsigned char **out); 885 extern const ASN1_ITEM X509_CERT_PAIR_it; 886 887 int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, 888 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); 889 int X509_set_ex_data(X509 *r, int idx, void *arg); 890 void *X509_get_ex_data(X509 *r, int idx); 891 int i2d_X509_AUX(X509 *a,unsigned char **pp); 892 X509 * d2i_X509_AUX(X509 **a,const unsigned char **pp,long length); 893 void X509_get0_signature(const ASN1_BIT_STRING **psig, 894 const X509_ALGOR **palg, const X509 *x); 895 int X509_get_signature_nid(const X509 *x); 896 897 int X509_alias_set1(X509 *x, const unsigned char *name, int len); 898 int X509_keyid_set1(X509 *x, const unsigned char *id, int len); 899 unsigned char *X509_alias_get0(X509 *x, int *len); 900 unsigned char *X509_keyid_get0(X509 *x, int *len); 901 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int); 902 int X509_TRUST_set(int *t, int trust); 903 int X509_add1_trust_object(X509 *x, const ASN1_OBJECT *obj); 904 int X509_add1_reject_object(X509 *x, const ASN1_OBJECT *obj); 905 void X509_trust_clear(X509 *x); 906 void X509_reject_clear(X509 *x); 907 908 X509_REVOKED *X509_REVOKED_new(void); 909 void X509_REVOKED_free(X509_REVOKED *a); 910 X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *a); 911 X509_REVOKED *d2i_X509_REVOKED(X509_REVOKED **a, const unsigned char **in, long len); 912 int i2d_X509_REVOKED(X509_REVOKED *a, unsigned char **out); 913 extern const ASN1_ITEM X509_REVOKED_it; 914 915 X509_CRL_INFO *X509_CRL_INFO_new(void); 916 void X509_CRL_INFO_free(X509_CRL_INFO *a); 917 X509_CRL_INFO *d2i_X509_CRL_INFO(X509_CRL_INFO **a, const unsigned char **in, long len); 918 int i2d_X509_CRL_INFO(X509_CRL_INFO *a, unsigned char **out); 919 extern const ASN1_ITEM X509_CRL_INFO_it; 920 921 X509_CRL *X509_CRL_new(void); 922 void X509_CRL_free(X509_CRL *a); 923 X509_CRL *d2i_X509_CRL(X509_CRL **a, const unsigned char **in, long len); 924 int i2d_X509_CRL(X509_CRL *a, unsigned char **out); 925 extern const ASN1_ITEM X509_CRL_it; 926 927 int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev); 928 int X509_CRL_get0_by_serial(X509_CRL *crl, 929 X509_REVOKED **ret, ASN1_INTEGER *serial); 930 int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x); 931 932 X509_PKEY * X509_PKEY_new(void ); 933 void X509_PKEY_free(X509_PKEY *a); 934 935 NETSCAPE_SPKI *NETSCAPE_SPKI_new(void); 936 void NETSCAPE_SPKI_free(NETSCAPE_SPKI *a); 937 NETSCAPE_SPKI *d2i_NETSCAPE_SPKI(NETSCAPE_SPKI **a, const unsigned char **in, long len); 938 int i2d_NETSCAPE_SPKI(NETSCAPE_SPKI *a, unsigned char **out); 939 extern const ASN1_ITEM NETSCAPE_SPKI_it; 940 NETSCAPE_SPKAC *NETSCAPE_SPKAC_new(void); 941 void NETSCAPE_SPKAC_free(NETSCAPE_SPKAC *a); 942 NETSCAPE_SPKAC *d2i_NETSCAPE_SPKAC(NETSCAPE_SPKAC **a, const unsigned char **in, long len); 943 int i2d_NETSCAPE_SPKAC(NETSCAPE_SPKAC *a, unsigned char **out); 944 extern const ASN1_ITEM NETSCAPE_SPKAC_it; 945 NETSCAPE_CERT_SEQUENCE *NETSCAPE_CERT_SEQUENCE_new(void); 946 void NETSCAPE_CERT_SEQUENCE_free(NETSCAPE_CERT_SEQUENCE *a); 947 NETSCAPE_CERT_SEQUENCE *d2i_NETSCAPE_CERT_SEQUENCE(NETSCAPE_CERT_SEQUENCE **a, const unsigned char **in, long len); 948 int i2d_NETSCAPE_CERT_SEQUENCE(NETSCAPE_CERT_SEQUENCE *a, unsigned char **out); 949 extern const ASN1_ITEM NETSCAPE_CERT_SEQUENCE_it; 950 951 #ifndef OPENSSL_NO_EVP 952 X509_INFO * X509_INFO_new(void); 953 void X509_INFO_free(X509_INFO *a); 954 char * X509_NAME_oneline(const X509_NAME *a, char *buf, int size); 955 956 int ASN1_item_digest(const ASN1_ITEM *it,const EVP_MD *type,void *data, 957 unsigned char *md,unsigned int *len); 958 959 int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *algor1, 960 ASN1_BIT_STRING *signature,void *data,EVP_PKEY *pkey); 961 962 int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, 963 ASN1_BIT_STRING *signature, 964 void *data, EVP_PKEY *pkey, const EVP_MD *type); 965 int ASN1_item_sign_ctx(const ASN1_ITEM *it, 966 X509_ALGOR *algor1, X509_ALGOR *algor2, 967 ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx); 968 #endif 969 970 const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x); 971 const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x); 972 int X509_set_version(X509 *x, long version); 973 long X509_get_version(const X509 *x); 974 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial); 975 ASN1_INTEGER * X509_get_serialNumber(X509 *x); 976 const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x); 977 int X509_set_issuer_name(X509 *x, X509_NAME *name); 978 X509_NAME * X509_get_issuer_name(const X509 *a); 979 int X509_set_subject_name(X509 *x, X509_NAME *name); 980 X509_NAME * X509_get_subject_name(const X509 *a); 981 int X509_set_notBefore(X509 *x, const ASN1_TIME *tm); 982 int X509_set1_notBefore(X509 *x, const ASN1_TIME *tm); 983 int X509_set_notAfter(X509 *x, const ASN1_TIME *tm); 984 int X509_set1_notAfter(X509 *x, const ASN1_TIME *tm); 985 const ASN1_TIME *X509_get0_notBefore(const X509 *x); 986 ASN1_TIME *X509_getm_notBefore(const X509 *x); 987 const ASN1_TIME *X509_get0_notAfter(const X509 *x); 988 ASN1_TIME *X509_getm_notAfter(const X509 *x); 989 int X509_set_pubkey(X509 *x, EVP_PKEY *pkey); 990 EVP_PKEY * X509_get_pubkey(X509 *x); 991 EVP_PKEY * X509_get0_pubkey(const X509 *x); 992 ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x); 993 int X509_certificate_type(const X509 *x, const EVP_PKEY *pubkey); 994 int X509_get_signature_type(const X509 *x); 995 996 #define X509_get_notBefore X509_getm_notBefore 997 #define X509_get_notAfter X509_getm_notAfter 998 999 int X509_REQ_set_version(X509_REQ *x,long version); 1000 long X509_REQ_get_version(const X509_REQ *x); 1001 int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name); 1002 X509_NAME *X509_REQ_get_subject_name(const X509_REQ *x); 1003 int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey); 1004 EVP_PKEY * X509_REQ_get_pubkey(X509_REQ *req); 1005 int X509_REQ_extension_nid(int nid); 1006 int * X509_REQ_get_extension_nids(void); 1007 void X509_REQ_set_extension_nids(int *nids); 1008 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req); 1009 int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, 1010 int nid); 1011 int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts); 1012 int X509_REQ_get_attr_count(const X509_REQ *req); 1013 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, 1014 int lastpos); 1015 int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, const ASN1_OBJECT *obj, 1016 int lastpos); 1017 X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc); 1018 X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc); 1019 int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr); 1020 int X509_REQ_add1_attr_by_OBJ(X509_REQ *req, 1021 const ASN1_OBJECT *obj, int type, 1022 const unsigned char *bytes, int len); 1023 int X509_REQ_add1_attr_by_NID(X509_REQ *req, 1024 int nid, int type, 1025 const unsigned char *bytes, int len); 1026 int X509_REQ_add1_attr_by_txt(X509_REQ *req, 1027 const char *attrname, int type, 1028 const unsigned char *bytes, int len); 1029 1030 int X509_CRL_set_version(X509_CRL *x, long version); 1031 int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name); 1032 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm); 1033 int X509_CRL_set1_lastUpdate(X509_CRL *x, const ASN1_TIME *tm); 1034 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm); 1035 int X509_CRL_set1_nextUpdate(X509_CRL *x, const ASN1_TIME *tm); 1036 int X509_CRL_sort(X509_CRL *crl); 1037 1038 const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED *x); 1039 const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *x); 1040 const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x); 1041 int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm); 1042 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial); 1043 1044 int X509_REQ_check_private_key(X509_REQ *x509,EVP_PKEY *pkey); 1045 1046 int X509_check_private_key(const X509 *x509, const EVP_PKEY *pkey); 1047 1048 int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b); 1049 unsigned long X509_issuer_and_serial_hash(X509 *a); 1050 1051 int X509_issuer_name_cmp(const X509 *a, const X509 *b); 1052 unsigned long X509_issuer_name_hash(X509 *a); 1053 1054 int X509_subject_name_cmp(const X509 *a, const X509 *b); 1055 unsigned long X509_subject_name_hash(X509 *x); 1056 1057 #ifndef OPENSSL_NO_MD5 1058 unsigned long X509_issuer_name_hash_old(X509 *a); 1059 unsigned long X509_subject_name_hash_old(X509 *x); 1060 #endif 1061 1062 int X509_cmp(const X509 *a, const X509 *b); 1063 int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b); 1064 unsigned long X509_NAME_hash(X509_NAME *x); 1065 unsigned long X509_NAME_hash_old(X509_NAME *x); 1066 1067 int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b); 1068 int X509_CRL_match(const X509_CRL *a, const X509_CRL *b); 1069 int X509_print_ex_fp(FILE *bp,X509 *x, unsigned long nmflag, unsigned long cflag); 1070 int X509_print_fp(FILE *bp,X509 *x); 1071 int X509_CRL_print_fp(FILE *bp,X509_CRL *x); 1072 int X509_REQ_print_fp(FILE *bp,X509_REQ *req); 1073 int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, 1074 unsigned long flags); 1075 1076 #ifndef OPENSSL_NO_BIO 1077 int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase); 1078 int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent, 1079 unsigned long flags); 1080 int X509_print_ex(BIO *bp,X509 *x, unsigned long nmflag, unsigned long cflag); 1081 int X509_print(BIO *bp,X509 *x); 1082 int X509_ocspid_print(BIO *bp,X509 *x); 1083 int X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent); 1084 int X509_CRL_print(BIO *bp,X509_CRL *x); 1085 int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag, unsigned long cflag); 1086 int X509_REQ_print(BIO *bp,X509_REQ *req); 1087 #endif 1088 1089 int X509_NAME_entry_count(const X509_NAME *name); 1090 int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, 1091 char *buf,int len); 1092 int X509_NAME_get_text_by_OBJ(X509_NAME *name, 1093 const ASN1_OBJECT *obj, char *buf,int len); 1094 1095 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use 1096 * lastpos, search after that position on. */ 1097 int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid, 1098 int lastpos); 1099 int X509_NAME_get_index_by_OBJ(const X509_NAME *name, 1100 const ASN1_OBJECT *obj, int lastpos); 1101 X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name, int loc); 1102 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); 1103 int X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne, 1104 int loc, int set); 1105 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, 1106 int type, const unsigned char *bytes, int len, int loc, int set); 1107 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, 1108 const unsigned char *bytes, int len, int loc, int set); 1109 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, 1110 const char *field, int type, const unsigned char *bytes, int len); 1111 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, 1112 int type, const unsigned char *bytes, int len); 1113 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, 1114 const unsigned char *bytes, int len, int loc, int set); 1115 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, 1116 const ASN1_OBJECT *obj, int type, 1117 const unsigned char *bytes, int len); 1118 int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, 1119 const ASN1_OBJECT *obj); 1120 int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, 1121 const unsigned char *bytes, int len); 1122 ASN1_OBJECT * X509_NAME_ENTRY_get_object(const X509_NAME_ENTRY *ne); 1123 ASN1_STRING * X509_NAME_ENTRY_get_data(const X509_NAME_ENTRY *ne); 1124 int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne); 1125 1126 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x); 1127 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, 1128 int nid, int lastpos); 1129 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x, 1130 const ASN1_OBJECT *obj, int lastpos); 1131 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x, 1132 int crit, int lastpos); 1133 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc); 1134 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc); 1135 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x, 1136 X509_EXTENSION *ex, int loc); 1137 1138 int X509_get_ext_count(const X509 *x); 1139 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos); 1140 int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, 1141 int lastpos); 1142 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos); 1143 X509_EXTENSION *X509_get_ext(const X509 *x, int loc); 1144 X509_EXTENSION *X509_delete_ext(X509 *x, int loc); 1145 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc); 1146 void * X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx); 1147 int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit, 1148 unsigned long flags); 1149 1150 int X509_CRL_get_ext_count(const X509_CRL *x); 1151 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, 1152 int lastpos); 1153 int X509_CRL_get_ext_by_OBJ(const X509_CRL *x, 1154 const ASN1_OBJECT *obj, int lastpos); 1155 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, 1156 int lastpos); 1157 X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc); 1158 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc); 1159 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc); 1160 void * X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, 1161 int *idx); 1162 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, 1163 int crit, unsigned long flags); 1164 1165 int X509_REVOKED_get_ext_count(const X509_REVOKED *x); 1166 int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, 1167 int lastpos); 1168 int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, 1169 const ASN1_OBJECT *obj, int lastpos); 1170 int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, 1171 int crit, int lastpos); 1172 X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc); 1173 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); 1174 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, 1175 int loc); 1176 void * X509_REVOKED_get_ext_d2i(const X509_REVOKED *x, int nid, 1177 int *crit, int *idx); 1178 int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, 1179 int crit, unsigned long flags); 1180 1181 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, 1182 int nid, int crit, ASN1_OCTET_STRING *data); 1183 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, 1184 const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data); 1185 int X509_EXTENSION_set_object(X509_EXTENSION *ex, 1186 const ASN1_OBJECT *obj); 1187 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit); 1188 int X509_EXTENSION_set_data(X509_EXTENSION *ex, 1189 ASN1_OCTET_STRING *data); 1190 ASN1_OBJECT * X509_EXTENSION_get_object(X509_EXTENSION *ex); 1191 ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne); 1192 int X509_EXTENSION_get_critical(const X509_EXTENSION *ex); 1193 1194 int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x); 1195 int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, 1196 int lastpos); 1197 int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, 1198 const ASN1_OBJECT *obj, int lastpos); 1199 X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc); 1200 X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc); 1201 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, 1202 X509_ATTRIBUTE *attr); 1203 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, 1204 const ASN1_OBJECT *obj, int type, 1205 const unsigned char *bytes, int len); 1206 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, 1207 int nid, int type, 1208 const unsigned char *bytes, int len); 1209 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, 1210 const char *attrname, int type, 1211 const unsigned char *bytes, int len); 1212 void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x, 1213 const ASN1_OBJECT *obj, int lastpos, int type); 1214 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, 1215 int atrtype, const void *data, int len); 1216 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, 1217 const ASN1_OBJECT *obj, int atrtype, const void *data, int len); 1218 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, 1219 const char *atrname, int type, const unsigned char *bytes, int len); 1220 int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj); 1221 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len); 1222 void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, 1223 int atrtype, void *data); 1224 int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr); 1225 ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr); 1226 ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx); 1227 1228 int EVP_PKEY_get_attr_count(const EVP_PKEY *key); 1229 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, 1230 int lastpos); 1231 int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj, 1232 int lastpos); 1233 X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc); 1234 X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc); 1235 int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr); 1236 int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key, 1237 const ASN1_OBJECT *obj, int type, 1238 const unsigned char *bytes, int len); 1239 int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key, 1240 int nid, int type, 1241 const unsigned char *bytes, int len); 1242 int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key, 1243 const char *attrname, int type, 1244 const unsigned char *bytes, int len); 1245 1246 int X509_verify_cert(X509_STORE_CTX *ctx); 1247 1248 /* lookup a cert from a X509 STACK */ 1249 X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name, 1250 ASN1_INTEGER *serial); 1251 X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name); 1252 1253 PBEPARAM *PBEPARAM_new(void); 1254 void PBEPARAM_free(PBEPARAM *a); 1255 PBEPARAM *d2i_PBEPARAM(PBEPARAM **a, const unsigned char **in, long len); 1256 int i2d_PBEPARAM(PBEPARAM *a, unsigned char **out); 1257 extern const ASN1_ITEM PBEPARAM_it; 1258 PBE2PARAM *PBE2PARAM_new(void); 1259 void PBE2PARAM_free(PBE2PARAM *a); 1260 PBE2PARAM *d2i_PBE2PARAM(PBE2PARAM **a, const unsigned char **in, long len); 1261 int i2d_PBE2PARAM(PBE2PARAM *a, unsigned char **out); 1262 extern const ASN1_ITEM PBE2PARAM_it; 1263 PBKDF2PARAM *PBKDF2PARAM_new(void); 1264 void PBKDF2PARAM_free(PBKDF2PARAM *a); 1265 PBKDF2PARAM *d2i_PBKDF2PARAM(PBKDF2PARAM **a, const unsigned char **in, long len); 1266 int i2d_PBKDF2PARAM(PBKDF2PARAM *a, unsigned char **out); 1267 extern const ASN1_ITEM PBKDF2PARAM_it; 1268 1269 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter, 1270 const unsigned char *salt, int saltlen); 1271 1272 X509_ALGOR *PKCS5_pbe_set(int alg, int iter, 1273 const unsigned char *salt, int saltlen); 1274 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, 1275 unsigned char *salt, int saltlen); 1276 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter, 1277 unsigned char *salt, int saltlen, 1278 unsigned char *aiv, int prf_nid); 1279 1280 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen, 1281 int prf_nid, int keylen); 1282 1283 /* PKCS#8 utilities */ 1284 1285 PKCS8_PRIV_KEY_INFO *PKCS8_PRIV_KEY_INFO_new(void); 1286 void PKCS8_PRIV_KEY_INFO_free(PKCS8_PRIV_KEY_INFO *a); 1287 PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO(PKCS8_PRIV_KEY_INFO **a, const unsigned char **in, long len); 1288 int i2d_PKCS8_PRIV_KEY_INFO(PKCS8_PRIV_KEY_INFO *a, unsigned char **out); 1289 extern const ASN1_ITEM PKCS8_PRIV_KEY_INFO_it; 1290 1291 EVP_PKEY *EVP_PKCS82PKEY(const PKCS8_PRIV_KEY_INFO *p8); 1292 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey); 1293 1294 int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj, int version, 1295 int ptype, void *pval, unsigned char *penc, int penclen); 1296 int PKCS8_pkey_get0(const ASN1_OBJECT **ppkalg, const unsigned char **pk, 1297 int *ppklen, const X509_ALGOR **pa, const PKCS8_PRIV_KEY_INFO *p8); 1298 1299 const STACK_OF(X509_ATTRIBUTE) *PKCS8_pkey_get0_attrs(const PKCS8_PRIV_KEY_INFO *p8); 1300 int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type, 1301 const unsigned char *bytes, int len); 1302 1303 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj, 1304 int ptype, void *pval, 1305 unsigned char *penc, int penclen); 1306 int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, 1307 const unsigned char **pk, int *ppklen, 1308 X509_ALGOR **pa, 1309 X509_PUBKEY *pub); 1310 1311 int X509_check_trust(X509 *x, int id, int flags); 1312 int X509_TRUST_get_count(void); 1313 X509_TRUST * X509_TRUST_get0(int idx); 1314 int X509_TRUST_get_by_id(int id); 1315 int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int), 1316 const char *name, int arg1, void *arg2); 1317 void X509_TRUST_cleanup(void); 1318 int X509_TRUST_get_flags(const X509_TRUST *xp); 1319 char *X509_TRUST_get0_name(const X509_TRUST *xp); 1320 int X509_TRUST_get_trust(const X509_TRUST *xp); 1321 1322 int X509_up_ref(X509 *x); 1323 STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain); 1324 1325 /* BEGIN ERROR CODES */ 1326 /* The following lines are auto generated by the script mkerr.pl. Any changes 1327 * made after this point may be overwritten when the script is next run. 1328 */ 1329 void ERR_load_X509_strings(void); 1330 1331 /* Error codes for the X509 functions. */ 1332 1333 /* Function codes. */ 1334 #define X509_F_ADD_CERT_DIR 100 1335 #define X509_F_BY_FILE_CTRL 101 1336 #define X509_F_CHECK_POLICY 145 1337 #define X509_F_DIR_CTRL 102 1338 #define X509_F_GET_CERT_BY_SUBJECT 103 1339 #define X509_F_NETSCAPE_SPKI_B64_DECODE 129 1340 #define X509_F_NETSCAPE_SPKI_B64_ENCODE 130 1341 #define X509_F_X509AT_ADD1_ATTR 135 1342 #define X509_F_X509V3_ADD_EXT 104 1343 #define X509_F_X509_ATTRIBUTE_CREATE_BY_NID 136 1344 #define X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ 137 1345 #define X509_F_X509_ATTRIBUTE_CREATE_BY_TXT 140 1346 #define X509_F_X509_ATTRIBUTE_GET0_DATA 139 1347 #define X509_F_X509_ATTRIBUTE_SET1_DATA 138 1348 #define X509_F_X509_CHECK_PRIVATE_KEY 128 1349 #define X509_F_X509_CRL_PRINT_FP 147 1350 #define X509_F_X509_EXTENSION_CREATE_BY_NID 108 1351 #define X509_F_X509_EXTENSION_CREATE_BY_OBJ 109 1352 #define X509_F_X509_GET_PUBKEY_PARAMETERS 110 1353 #define X509_F_X509_LOAD_CERT_CRL_FILE 132 1354 #define X509_F_X509_LOAD_CERT_FILE 111 1355 #define X509_F_X509_LOAD_CRL_FILE 112 1356 #define X509_F_X509_NAME_ADD_ENTRY 113 1357 #define X509_F_X509_NAME_ENTRY_CREATE_BY_NID 114 1358 #define X509_F_X509_NAME_ENTRY_CREATE_BY_TXT 131 1359 #define X509_F_X509_NAME_ENTRY_SET_OBJECT 115 1360 #define X509_F_X509_NAME_ONELINE 116 1361 #define X509_F_X509_NAME_PRINT 117 1362 #define X509_F_X509_PRINT_EX_FP 118 1363 #define X509_F_X509_PUBKEY_GET 119 1364 #define X509_F_X509_PUBKEY_SET 120 1365 #define X509_F_X509_REQ_CHECK_PRIVATE_KEY 144 1366 #define X509_F_X509_REQ_PRINT_EX 121 1367 #define X509_F_X509_REQ_PRINT_FP 122 1368 #define X509_F_X509_REQ_TO_X509 123 1369 #define X509_F_X509_STORE_ADD_CERT 124 1370 #define X509_F_X509_STORE_ADD_CRL 125 1371 #define X509_F_X509_STORE_CTX_GET1_ISSUER 146 1372 #define X509_F_X509_STORE_CTX_INIT 143 1373 #define X509_F_X509_STORE_CTX_NEW 142 1374 #define X509_F_X509_STORE_CTX_PURPOSE_INHERIT 134 1375 #define X509_F_X509_TO_X509_REQ 126 1376 #define X509_F_X509_TRUST_ADD 133 1377 #define X509_F_X509_TRUST_SET 141 1378 #define X509_F_X509_VERIFY_CERT 127 1379 1380 /* Reason codes. */ 1381 #define X509_R_BAD_X509_FILETYPE 100 1382 #define X509_R_BASE64_DECODE_ERROR 118 1383 #define X509_R_CANT_CHECK_DH_KEY 114 1384 #define X509_R_CERT_ALREADY_IN_HASH_TABLE 101 1385 #define X509_R_ERR_ASN1_LIB 102 1386 #define X509_R_INVALID_DIRECTORY 113 1387 #define X509_R_INVALID_FIELD_NAME 119 1388 #define X509_R_INVALID_TRUST 123 1389 #define X509_R_KEY_TYPE_MISMATCH 115 1390 #define X509_R_KEY_VALUES_MISMATCH 116 1391 #define X509_R_LOADING_CERT_DIR 103 1392 #define X509_R_LOADING_DEFAULTS 104 1393 #define X509_R_METHOD_NOT_SUPPORTED 124 1394 #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY 105 1395 #define X509_R_PUBLIC_KEY_DECODE_ERROR 125 1396 #define X509_R_PUBLIC_KEY_ENCODE_ERROR 126 1397 #define X509_R_SHOULD_RETRY 106 1398 #define X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN 107 1399 #define X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY 108 1400 #define X509_R_UNKNOWN_KEY_TYPE 117 1401 #define X509_R_UNKNOWN_NID 109 1402 #define X509_R_UNKNOWN_PURPOSE_ID 121 1403 #define X509_R_UNKNOWN_TRUST_ID 120 1404 #define X509_R_UNSUPPORTED_ALGORITHM 111 1405 #define X509_R_WRONG_LOOKUP_TYPE 112 1406 #define X509_R_WRONG_TYPE 122 1407 1408 #ifdef __cplusplus 1409 } 1410 #endif 1411 #endif 1412