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