1 /* Copyright (C) 1995-1998 Eric Young (eay (at) cryptsoft.com) 2 * All rights reserved. 3 * 4 * This package is an SSL implementation written 5 * by Eric Young (eay (at) cryptsoft.com). 6 * The implementation was written so as to conform with Netscapes SSL. 7 * 8 * This library is free for commercial and non-commercial use as long as 9 * the following conditions are aheared to. The following conditions 10 * apply to all code found in this distribution, be it the RC4, RSA, 11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 12 * included with this distribution is covered by the same copyright terms 13 * except that the holder is Tim Hudson (tjh (at) cryptsoft.com). 14 * 15 * Copyright remains Eric Young's, and as such any Copyright notices in 16 * the code are not to be removed. 17 * If this package is used in a product, Eric Young should be given attribution 18 * as the author of the parts of the library used. 19 * This can be in the form of a textual message at program startup or 20 * in documentation (online or textual) provided with the package. 21 * 22 * Redistribution and use in source and binary forms, with or without 23 * modification, are permitted provided that the following conditions 24 * are met: 25 * 1. Redistributions of source code must retain the copyright 26 * notice, this list of conditions and the following disclaimer. 27 * 2. Redistributions in binary form must reproduce the above copyright 28 * notice, this list of conditions and the following disclaimer in the 29 * documentation and/or other materials provided with the distribution. 30 * 3. All advertising materials mentioning features or use of this software 31 * must display the following acknowledgement: 32 * "This product includes cryptographic software written by 33 * Eric Young (eay (at) cryptsoft.com)" 34 * The word 'cryptographic' can be left out if the rouines from the library 35 * being used are not cryptographic related :-). 36 * 4. If you include any Windows specific code (or a derivative thereof) from 37 * the apps directory (application code) you must include an acknowledgement: 38 * "This product includes software written by Tim Hudson (tjh (at) cryptsoft.com)" 39 * 40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 50 * SUCH DAMAGE. 51 * 52 * The licence and distribution terms for any publically available version or 53 * derivative of this code cannot be changed. i.e. this code cannot simply be 54 * copied and put under another distribution licence 55 * [including the GNU Public Licence.] 56 */ 57 /* ==================================================================== 58 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. 59 * ECDH support in OpenSSL originally developed by 60 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. 61 */ 62 63 #ifndef HEADER_X509_H 64 #define HEADER_X509_H 65 66 #include <openssl/base.h> 67 68 #include <time.h> 69 70 #include <openssl/asn1.h> 71 #include <openssl/bio.h> 72 #include <openssl/cipher.h> 73 #include <openssl/dh.h> 74 #include <openssl/dsa.h> 75 #include <openssl/ecdh.h> 76 #include <openssl/ecdsa.h> 77 #include <openssl/ec.h> 78 #include <openssl/evp.h> 79 #include <openssl/obj.h> 80 #include <openssl/pkcs7.h> 81 #include <openssl/pool.h> 82 #include <openssl/rsa.h> 83 #include <openssl/sha.h> 84 #include <openssl/stack.h> 85 #include <openssl/thread.h> 86 87 #ifdef __cplusplus 88 extern "C" { 89 #endif 90 91 92 /* Legacy X.509 library. 93 * 94 * This header is part of OpenSSL's X.509 implementation. It is retained for 95 * compatibility but otherwise underdocumented and not actively maintained. In 96 * the future, a replacement library will be available. Meanwhile, minimize 97 * dependencies on this header where possible. */ 98 99 100 #define X509_FILETYPE_PEM 1 101 #define X509_FILETYPE_ASN1 2 102 #define X509_FILETYPE_DEFAULT 3 103 104 #define X509v3_KU_DIGITAL_SIGNATURE 0x0080 105 #define X509v3_KU_NON_REPUDIATION 0x0040 106 #define X509v3_KU_KEY_ENCIPHERMENT 0x0020 107 #define X509v3_KU_DATA_ENCIPHERMENT 0x0010 108 #define X509v3_KU_KEY_AGREEMENT 0x0008 109 #define X509v3_KU_KEY_CERT_SIGN 0x0004 110 #define X509v3_KU_CRL_SIGN 0x0002 111 #define X509v3_KU_ENCIPHER_ONLY 0x0001 112 #define X509v3_KU_DECIPHER_ONLY 0x8000 113 #define X509v3_KU_UNDEF 0xffff 114 115 DEFINE_STACK_OF(X509_ALGOR) 116 DECLARE_ASN1_SET_OF(X509_ALGOR) 117 118 typedef STACK_OF(X509_ALGOR) X509_ALGORS; 119 120 struct X509_val_st 121 { 122 ASN1_TIME *notBefore; 123 ASN1_TIME *notAfter; 124 } /* X509_VAL */; 125 126 struct X509_pubkey_st 127 { 128 X509_ALGOR *algor; 129 ASN1_BIT_STRING *public_key; 130 EVP_PKEY *pkey; 131 }; 132 133 struct X509_sig_st 134 { 135 X509_ALGOR *algor; 136 ASN1_OCTET_STRING *digest; 137 } /* X509_SIG */; 138 139 struct X509_name_entry_st 140 { 141 ASN1_OBJECT *object; 142 ASN1_STRING *value; 143 int set; 144 int size; /* temp variable */ 145 } /* X509_NAME_ENTRY */; 146 147 DEFINE_STACK_OF(X509_NAME_ENTRY) 148 DECLARE_ASN1_SET_OF(X509_NAME_ENTRY) 149 150 /* we always keep X509_NAMEs in 2 forms. */ 151 struct X509_name_st 152 { 153 STACK_OF(X509_NAME_ENTRY) *entries; 154 int modified; /* true if 'bytes' needs to be built */ 155 BUF_MEM *bytes; 156 /* unsigned long hash; Keep the hash around for lookups */ 157 unsigned char *canon_enc; 158 int canon_enclen; 159 } /* X509_NAME */; 160 161 DEFINE_STACK_OF(X509_NAME) 162 163 struct X509_extension_st 164 { 165 ASN1_OBJECT *object; 166 ASN1_BOOLEAN critical; 167 ASN1_OCTET_STRING *value; 168 } /* X509_EXTENSION */; 169 170 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS; 171 172 DEFINE_STACK_OF(X509_EXTENSION) 173 DECLARE_ASN1_SET_OF(X509_EXTENSION) 174 175 /* a sequence of these are used */ 176 struct x509_attributes_st 177 { 178 ASN1_OBJECT *object; 179 int single; /* 0 for a set, 1 for a single item (which is wrong) */ 180 union { 181 char *ptr; 182 /* 0 */ STACK_OF(ASN1_TYPE) *set; 183 /* 1 */ ASN1_TYPE *single; 184 } value; 185 } /* X509_ATTRIBUTE */; 186 187 DEFINE_STACK_OF(X509_ATTRIBUTE) 188 DECLARE_ASN1_SET_OF(X509_ATTRIBUTE) 189 190 191 struct X509_req_info_st 192 { 193 ASN1_ENCODING enc; 194 ASN1_INTEGER *version; 195 X509_NAME *subject; 196 X509_PUBKEY *pubkey; 197 /* d=2 hl=2 l= 0 cons: cont: 00 */ 198 STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */ 199 } /* X509_REQ_INFO */; 200 201 struct X509_req_st 202 { 203 X509_REQ_INFO *req_info; 204 X509_ALGOR *sig_alg; 205 ASN1_BIT_STRING *signature; 206 CRYPTO_refcount_t references; 207 } /* X509_REQ */; 208 209 struct x509_cinf_st 210 { 211 ASN1_INTEGER *version; /* [ 0 ] default of v1 */ 212 ASN1_INTEGER *serialNumber; 213 X509_ALGOR *signature; 214 X509_NAME *issuer; 215 X509_VAL *validity; 216 X509_NAME *subject; 217 X509_PUBKEY *key; 218 ASN1_BIT_STRING *issuerUID; /* [ 1 ] optional in v2 */ 219 ASN1_BIT_STRING *subjectUID; /* [ 2 ] optional in v2 */ 220 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ 221 ASN1_ENCODING enc; 222 } /* X509_CINF */; 223 224 /* This stuff is certificate "auxiliary info" 225 * it contains details which are useful in certificate 226 * stores and databases. When used this is tagged onto 227 * the end of the certificate itself 228 */ 229 230 struct x509_cert_aux_st 231 { 232 STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ 233 STACK_OF(ASN1_OBJECT) *reject; /* rejected uses */ 234 ASN1_UTF8STRING *alias; /* "friendly name" */ 235 ASN1_OCTET_STRING *keyid; /* key id of private key */ 236 STACK_OF(X509_ALGOR) *other; /* other unspecified info */ 237 } /* X509_CERT_AUX */; 238 239 DECLARE_STACK_OF(DIST_POINT) 240 DECLARE_STACK_OF(GENERAL_NAME) 241 242 struct x509_st 243 { 244 X509_CINF *cert_info; 245 X509_ALGOR *sig_alg; 246 ASN1_BIT_STRING *signature; 247 CRYPTO_refcount_t references; 248 char *name; 249 CRYPTO_EX_DATA ex_data; 250 /* These contain copies of various extension values */ 251 long ex_pathlen; 252 long ex_pcpathlen; 253 unsigned long ex_flags; 254 unsigned long ex_kusage; 255 unsigned long ex_xkusage; 256 unsigned long ex_nscert; 257 ASN1_OCTET_STRING *skid; 258 AUTHORITY_KEYID *akid; 259 X509_POLICY_CACHE *policy_cache; 260 STACK_OF(DIST_POINT) *crldp; 261 STACK_OF(GENERAL_NAME) *altname; 262 NAME_CONSTRAINTS *nc; 263 unsigned char sha1_hash[SHA_DIGEST_LENGTH]; 264 X509_CERT_AUX *aux; 265 CRYPTO_BUFFER *buf; 266 CRYPTO_MUTEX lock; 267 } /* X509 */; 268 269 DEFINE_STACK_OF(X509) 270 DECLARE_ASN1_SET_OF(X509) 271 272 /* This is used for a table of trust checking functions */ 273 274 struct x509_trust_st { 275 int trust; 276 int flags; 277 int (*check_trust)(struct x509_trust_st *, X509 *, int); 278 char *name; 279 int arg1; 280 void *arg2; 281 } /* X509_TRUST */; 282 283 DEFINE_STACK_OF(X509_TRUST) 284 285 /* standard trust ids */ 286 287 #define X509_TRUST_DEFAULT (-1) /* Only valid in purpose settings */ 288 289 #define X509_TRUST_COMPAT 1 290 #define X509_TRUST_SSL_CLIENT 2 291 #define X509_TRUST_SSL_SERVER 3 292 #define X509_TRUST_EMAIL 4 293 #define X509_TRUST_OBJECT_SIGN 5 294 #define X509_TRUST_OCSP_SIGN 6 295 #define X509_TRUST_OCSP_REQUEST 7 296 #define X509_TRUST_TSA 8 297 298 /* Keep these up to date! */ 299 #define X509_TRUST_MIN 1 300 #define X509_TRUST_MAX 8 301 302 303 /* trust_flags values */ 304 #define X509_TRUST_DYNAMIC 1 305 #define X509_TRUST_DYNAMIC_NAME 2 306 307 /* check_trust return codes */ 308 309 #define X509_TRUST_TRUSTED 1 310 #define X509_TRUST_REJECTED 2 311 #define X509_TRUST_UNTRUSTED 3 312 313 /* Flags for X509_print_ex() */ 314 315 #define X509_FLAG_COMPAT 0 316 #define X509_FLAG_NO_HEADER 1L 317 #define X509_FLAG_NO_VERSION (1L << 1) 318 #define X509_FLAG_NO_SERIAL (1L << 2) 319 #define X509_FLAG_NO_SIGNAME (1L << 3) 320 #define X509_FLAG_NO_ISSUER (1L << 4) 321 #define X509_FLAG_NO_VALIDITY (1L << 5) 322 #define X509_FLAG_NO_SUBJECT (1L << 6) 323 #define X509_FLAG_NO_PUBKEY (1L << 7) 324 #define X509_FLAG_NO_EXTENSIONS (1L << 8) 325 #define X509_FLAG_NO_SIGDUMP (1L << 9) 326 #define X509_FLAG_NO_AUX (1L << 10) 327 #define X509_FLAG_NO_ATTRIBUTES (1L << 11) 328 #define X509_FLAG_NO_IDS (1L << 12) 329 330 /* Flags specific to X509_NAME_print_ex() */ 331 332 /* The field separator information */ 333 334 #define XN_FLAG_SEP_MASK (0xf << 16) 335 336 #define XN_FLAG_COMPAT 0 /* Traditional SSLeay: use old X509_NAME_print */ 337 #define XN_FLAG_SEP_COMMA_PLUS (1 << 16) /* RFC2253 ,+ */ 338 #define XN_FLAG_SEP_CPLUS_SPC (2 << 16) /* ,+ spaced: more readable */ 339 #define XN_FLAG_SEP_SPLUS_SPC (3 << 16) /* ;+ spaced */ 340 #define XN_FLAG_SEP_MULTILINE (4 << 16) /* One line per field */ 341 342 #define XN_FLAG_DN_REV (1 << 20) /* Reverse DN order */ 343 344 /* How the field name is shown */ 345 346 #define XN_FLAG_FN_MASK (0x3 << 21) 347 348 #define XN_FLAG_FN_SN 0 /* Object short name */ 349 #define XN_FLAG_FN_LN (1 << 21) /* Object long name */ 350 #define XN_FLAG_FN_OID (2 << 21) /* Always use OIDs */ 351 #define XN_FLAG_FN_NONE (3 << 21) /* No field names */ 352 353 #define XN_FLAG_SPC_EQ (1 << 23) /* Put spaces round '=' */ 354 355 /* This determines if we dump fields we don't recognise: 356 * RFC2253 requires this. 357 */ 358 359 #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24) 360 361 #define XN_FLAG_FN_ALIGN (1 << 25) /* Align field names to 20 characters */ 362 363 /* Complete set of RFC2253 flags */ 364 365 #define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \ 366 XN_FLAG_SEP_COMMA_PLUS | \ 367 XN_FLAG_DN_REV | \ 368 XN_FLAG_FN_SN | \ 369 XN_FLAG_DUMP_UNKNOWN_FIELDS) 370 371 /* readable oneline form */ 372 373 #define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \ 374 ASN1_STRFLGS_ESC_QUOTE | \ 375 XN_FLAG_SEP_CPLUS_SPC | \ 376 XN_FLAG_SPC_EQ | \ 377 XN_FLAG_FN_SN) 378 379 /* readable multiline form */ 380 381 #define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \ 382 ASN1_STRFLGS_ESC_MSB | \ 383 XN_FLAG_SEP_MULTILINE | \ 384 XN_FLAG_SPC_EQ | \ 385 XN_FLAG_FN_LN | \ 386 XN_FLAG_FN_ALIGN) 387 388 struct x509_revoked_st 389 { 390 ASN1_INTEGER *serialNumber; 391 ASN1_TIME *revocationDate; 392 STACK_OF(X509_EXTENSION) /* optional */ *extensions; 393 /* Set up if indirect CRL */ 394 STACK_OF(GENERAL_NAME) *issuer; 395 /* Revocation reason */ 396 int reason; 397 int sequence; /* load sequence */ 398 }; 399 400 DEFINE_STACK_OF(X509_REVOKED) 401 DECLARE_ASN1_SET_OF(X509_REVOKED) 402 403 struct X509_crl_info_st 404 { 405 ASN1_INTEGER *version; 406 X509_ALGOR *sig_alg; 407 X509_NAME *issuer; 408 ASN1_TIME *lastUpdate; 409 ASN1_TIME *nextUpdate; 410 STACK_OF(X509_REVOKED) *revoked; 411 STACK_OF(X509_EXTENSION) /* [0] */ *extensions; 412 ASN1_ENCODING enc; 413 } /* X509_CRL_INFO */; 414 415 DECLARE_STACK_OF(GENERAL_NAMES) 416 417 struct X509_crl_st 418 { 419 /* actual signature */ 420 X509_CRL_INFO *crl; 421 X509_ALGOR *sig_alg; 422 ASN1_BIT_STRING *signature; 423 CRYPTO_refcount_t references; 424 int flags; 425 /* Copies of various extensions */ 426 AUTHORITY_KEYID *akid; 427 ISSUING_DIST_POINT *idp; 428 /* Convenient breakdown of IDP */ 429 int idp_flags; 430 int idp_reasons; 431 /* CRL and base CRL numbers for delta processing */ 432 ASN1_INTEGER *crl_number; 433 ASN1_INTEGER *base_crl_number; 434 unsigned char sha1_hash[SHA_DIGEST_LENGTH]; 435 STACK_OF(GENERAL_NAMES) *issuers; 436 const X509_CRL_METHOD *meth; 437 void *meth_data; 438 } /* X509_CRL */; 439 440 DEFINE_STACK_OF(X509_CRL) 441 DECLARE_ASN1_SET_OF(X509_CRL) 442 443 struct private_key_st 444 { 445 int version; 446 /* The PKCS#8 data types */ 447 X509_ALGOR *enc_algor; 448 ASN1_OCTET_STRING *enc_pkey; /* encrypted pub key */ 449 450 /* When decrypted, the following will not be NULL */ 451 EVP_PKEY *dec_pkey; 452 453 /* used to encrypt and decrypt */ 454 int key_length; 455 char *key_data; 456 int key_free; /* true if we should auto free key_data */ 457 458 /* expanded version of 'enc_algor' */ 459 EVP_CIPHER_INFO cipher; 460 } /* X509_PKEY */; 461 462 #ifndef OPENSSL_NO_EVP 463 struct X509_info_st 464 { 465 X509 *x509; 466 X509_CRL *crl; 467 X509_PKEY *x_pkey; 468 469 EVP_CIPHER_INFO enc_cipher; 470 int enc_len; 471 char *enc_data; 472 473 } /* X509_INFO */; 474 475 DEFINE_STACK_OF(X509_INFO) 476 #endif 477 478 /* The next 2 structures and their 8 routines were sent to me by 479 * Pat Richard <patr (at) x509.com> and are used to manipulate 480 * Netscapes spki structures - useful if you are writing a CA web page 481 */ 482 struct Netscape_spkac_st 483 { 484 X509_PUBKEY *pubkey; 485 ASN1_IA5STRING *challenge; /* challenge sent in atlas >= PR2 */ 486 } /* NETSCAPE_SPKAC */; 487 488 struct Netscape_spki_st 489 { 490 NETSCAPE_SPKAC *spkac; /* signed public key and challenge */ 491 X509_ALGOR *sig_algor; 492 ASN1_BIT_STRING *signature; 493 } /* NETSCAPE_SPKI */; 494 495 /* PKCS#8 private key info structure */ 496 497 struct pkcs8_priv_key_info_st 498 { 499 int broken; /* Flag for various broken formats */ 500 #define PKCS8_OK 0 501 #define PKCS8_NO_OCTET 1 502 #define PKCS8_EMBEDDED_PARAM 2 503 #define PKCS8_NS_DB 3 504 #define PKCS8_NEG_PRIVKEY 4 505 ASN1_INTEGER *version; 506 X509_ALGOR *pkeyalg; 507 ASN1_TYPE *pkey; /* Should be OCTET STRING but some are broken */ 508 STACK_OF(X509_ATTRIBUTE) *attributes; 509 }; 510 511 #ifdef __cplusplus 512 } 513 #endif 514 515 #include <openssl/x509_vfy.h> 516 517 #ifdef __cplusplus 518 extern "C" { 519 #endif 520 521 #define X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version) 522 /* #define X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */ 523 #define X509_get_notBefore(x) ((x)->cert_info->validity->notBefore) 524 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) 525 #define X509_get_cert_info(x) ((x)->cert_info) 526 #define X509_extract_key(x) X509_get_pubkey(x) /*****/ 527 #define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version) 528 #define X509_REQ_get_subject_name(x) ((x)->req_info->subject) 529 #define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a) 530 #define X509_name_cmp(a,b) X509_NAME_cmp((a),(b)) 531 #define X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm)) 532 533 #define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version) 534 #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate) 535 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate) 536 #define X509_CRL_get_issuer(x) ((x)->crl->issuer) 537 #define X509_CRL_get_REVOKED(x) ((x)->crl->revoked) 538 539 #define X509_CINF_set_modified(c) ((c)->enc.modified = 1) 540 #define X509_CINF_get_issuer(c) (&(c)->issuer) 541 #define X509_CINF_get_extensions(c) ((c)->extensions) 542 #define X509_CINF_get_signature(c) ((c)->signature) 543 544 OPENSSL_EXPORT void X509_CRL_set_default_method(const X509_CRL_METHOD *meth); 545 OPENSSL_EXPORT X509_CRL_METHOD *X509_CRL_METHOD_new( 546 int (*crl_init)(X509_CRL *crl), 547 int (*crl_free)(X509_CRL *crl), 548 int (*crl_lookup)(X509_CRL *crl, X509_REVOKED **ret, 549 ASN1_INTEGER *ser, X509_NAME *issuer), 550 int (*crl_verify)(X509_CRL *crl, EVP_PKEY *pk)); 551 OPENSSL_EXPORT void X509_CRL_METHOD_free(X509_CRL_METHOD *m); 552 553 OPENSSL_EXPORT void X509_CRL_set_meth_data(X509_CRL *crl, void *dat); 554 OPENSSL_EXPORT void *X509_CRL_get_meth_data(X509_CRL *crl); 555 556 /* This one is only used so that a binary form can output, as in 557 * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */ 558 #define X509_get_X509_PUBKEY(x) ((x)->cert_info->key) 559 560 561 OPENSSL_EXPORT const char *X509_verify_cert_error_string(long n); 562 563 #ifndef OPENSSL_NO_EVP 564 OPENSSL_EXPORT int X509_verify(X509 *a, EVP_PKEY *r); 565 566 OPENSSL_EXPORT int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r); 567 OPENSSL_EXPORT int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r); 568 OPENSSL_EXPORT int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r); 569 570 OPENSSL_EXPORT NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len); 571 OPENSSL_EXPORT char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x); 572 OPENSSL_EXPORT EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x); 573 OPENSSL_EXPORT int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey); 574 575 OPENSSL_EXPORT int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki); 576 577 OPENSSL_EXPORT int X509_signature_dump(BIO *bp,const ASN1_STRING *sig, int indent); 578 OPENSSL_EXPORT int X509_signature_print(BIO *bp, const X509_ALGOR *alg, 579 const ASN1_STRING *sig); 580 581 OPENSSL_EXPORT int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); 582 OPENSSL_EXPORT int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx); 583 OPENSSL_EXPORT int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md); 584 OPENSSL_EXPORT int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx); 585 OPENSSL_EXPORT int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md); 586 OPENSSL_EXPORT int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx); 587 OPENSSL_EXPORT int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md); 588 589 OPENSSL_EXPORT int X509_pubkey_digest(const X509 *data,const EVP_MD *type, 590 unsigned char *md, unsigned int *len); 591 OPENSSL_EXPORT int X509_digest(const X509 *data,const EVP_MD *type, 592 unsigned char *md, unsigned int *len); 593 OPENSSL_EXPORT int X509_CRL_digest(const X509_CRL *data,const EVP_MD *type, 594 unsigned char *md, unsigned int *len); 595 OPENSSL_EXPORT int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type, 596 unsigned char *md, unsigned int *len); 597 OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type, 598 unsigned char *md, unsigned int *len); 599 #endif 600 601 /* X509_parse_from_buffer parses an X.509 structure from |buf| and returns a 602 * fresh X509 or NULL on error. There must not be any trailing data in |buf|. 603 * The returned structure (if any) holds a reference to |buf| rather than 604 * copying parts of it as a normal |d2i_X509| call would do. */ 605 OPENSSL_EXPORT X509 *X509_parse_from_buffer(CRYPTO_BUFFER *buf); 606 607 #ifndef OPENSSL_NO_FP_API 608 OPENSSL_EXPORT X509 *d2i_X509_fp(FILE *fp, X509 **x509); 609 OPENSSL_EXPORT int i2d_X509_fp(FILE *fp,X509 *x509); 610 OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL **crl); 611 OPENSSL_EXPORT int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl); 612 OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req); 613 OPENSSL_EXPORT int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req); 614 OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA **rsa); 615 OPENSSL_EXPORT int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa); 616 OPENSSL_EXPORT RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA **rsa); 617 OPENSSL_EXPORT int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa); 618 OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_fp(FILE *fp,RSA **rsa); 619 OPENSSL_EXPORT int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa); 620 #ifndef OPENSSL_NO_DSA 621 OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa); 622 OPENSSL_EXPORT int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa); 623 OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa); 624 OPENSSL_EXPORT int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa); 625 #endif 626 OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey); 627 OPENSSL_EXPORT int i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey); 628 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey); 629 OPENSSL_EXPORT int i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey); 630 OPENSSL_EXPORT X509_SIG *d2i_PKCS8_fp(FILE *fp,X509_SIG **p8); 631 OPENSSL_EXPORT int i2d_PKCS8_fp(FILE *fp,X509_SIG *p8); 632 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, 633 PKCS8_PRIV_KEY_INFO **p8inf); 634 OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,PKCS8_PRIV_KEY_INFO *p8inf); 635 OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key); 636 OPENSSL_EXPORT int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey); 637 OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a); 638 OPENSSL_EXPORT int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey); 639 OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a); 640 #endif 641 642 OPENSSL_EXPORT X509 *d2i_X509_bio(BIO *bp,X509 **x509); 643 OPENSSL_EXPORT int i2d_X509_bio(BIO *bp,X509 *x509); 644 OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl); 645 OPENSSL_EXPORT int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl); 646 OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req); 647 OPENSSL_EXPORT int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req); 648 OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa); 649 OPENSSL_EXPORT int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa); 650 OPENSSL_EXPORT RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa); 651 OPENSSL_EXPORT int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa); 652 OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_bio(BIO *bp,RSA **rsa); 653 OPENSSL_EXPORT int i2d_RSA_PUBKEY_bio(BIO *bp,RSA *rsa); 654 #ifndef OPENSSL_NO_DSA 655 OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa); 656 OPENSSL_EXPORT int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa); 657 OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa); 658 OPENSSL_EXPORT int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa); 659 #endif 660 OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey); 661 OPENSSL_EXPORT int i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey); 662 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey); 663 OPENSSL_EXPORT int i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey); 664 OPENSSL_EXPORT X509_SIG *d2i_PKCS8_bio(BIO *bp,X509_SIG **p8); 665 OPENSSL_EXPORT int i2d_PKCS8_bio(BIO *bp,X509_SIG *p8); 666 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, 667 PKCS8_PRIV_KEY_INFO **p8inf); 668 OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,PKCS8_PRIV_KEY_INFO *p8inf); 669 OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key); 670 OPENSSL_EXPORT int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey); 671 OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a); 672 OPENSSL_EXPORT int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey); 673 OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a); 674 675 OPENSSL_EXPORT X509 *X509_dup(X509 *x509); 676 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa); 677 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex); 678 OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl); 679 OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev); 680 OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req); 681 OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn); 682 OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, const ASN1_OBJECT *aobj, int ptype, void *pval); 683 OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype, 684 const void **ppval, 685 const X509_ALGOR *algor); 686 OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); 687 OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); 688 689 OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn); 690 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); 691 OPENSSL_EXPORT int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne); 692 693 OPENSSL_EXPORT int X509_NAME_get0_der(X509_NAME *nm, const unsigned char **pder, 694 size_t *pderlen); 695 696 OPENSSL_EXPORT int X509_cmp_time(const ASN1_TIME *s, time_t *t); 697 OPENSSL_EXPORT int X509_cmp_current_time(const ASN1_TIME *s); 698 OPENSSL_EXPORT ASN1_TIME * X509_time_adj(ASN1_TIME *s, long adj, time_t *t); 699 OPENSSL_EXPORT ASN1_TIME * X509_time_adj_ex(ASN1_TIME *s, int offset_day, long offset_sec, time_t *t); 700 OPENSSL_EXPORT ASN1_TIME * X509_gmtime_adj(ASN1_TIME *s, long adj); 701 702 OPENSSL_EXPORT const char * X509_get_default_cert_area(void ); 703 OPENSSL_EXPORT const char * X509_get_default_cert_dir(void ); 704 OPENSSL_EXPORT const char * X509_get_default_cert_file(void ); 705 OPENSSL_EXPORT const char * X509_get_default_cert_dir_env(void ); 706 OPENSSL_EXPORT const char * X509_get_default_cert_file_env(void ); 707 OPENSSL_EXPORT const char * X509_get_default_private_dir(void ); 708 709 OPENSSL_EXPORT X509_REQ * X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); 710 OPENSSL_EXPORT X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey); 711 712 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS) 713 DECLARE_ASN1_FUNCTIONS(X509_VAL) 714 715 DECLARE_ASN1_FUNCTIONS(X509_PUBKEY) 716 717 OPENSSL_EXPORT int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey); 718 OPENSSL_EXPORT EVP_PKEY * X509_PUBKEY_get(X509_PUBKEY *key); 719 OPENSSL_EXPORT int i2d_PUBKEY(const EVP_PKEY *a,unsigned char **pp); 720 OPENSSL_EXPORT EVP_PKEY * d2i_PUBKEY(EVP_PKEY **a,const unsigned char **pp, 721 long length); 722 OPENSSL_EXPORT int i2d_RSA_PUBKEY(const RSA *a,unsigned char **pp); 723 OPENSSL_EXPORT RSA * d2i_RSA_PUBKEY(RSA **a,const unsigned char **pp, 724 long length); 725 #ifndef OPENSSL_NO_DSA 726 OPENSSL_EXPORT int i2d_DSA_PUBKEY(const DSA *a,unsigned char **pp); 727 OPENSSL_EXPORT DSA * d2i_DSA_PUBKEY(DSA **a,const unsigned char **pp, 728 long length); 729 #endif 730 OPENSSL_EXPORT int i2d_EC_PUBKEY(const EC_KEY *a, unsigned char **pp); 731 OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, 732 long length); 733 734 DECLARE_ASN1_FUNCTIONS(X509_SIG) 735 DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO) 736 DECLARE_ASN1_FUNCTIONS(X509_REQ) 737 738 DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE) 739 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value); 740 741 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION) 742 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS) 743 744 DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY) 745 746 DECLARE_ASN1_FUNCTIONS(X509_NAME) 747 748 OPENSSL_EXPORT int X509_NAME_set(X509_NAME **xn, X509_NAME *name); 749 750 DECLARE_ASN1_FUNCTIONS(X509_CINF) 751 752 DECLARE_ASN1_FUNCTIONS(X509) 753 DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX) 754 755 /* X509_up_ref adds one to the reference count of |x| and returns one. */ 756 OPENSSL_EXPORT int X509_up_ref(X509 *x); 757 758 OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused, 759 CRYPTO_EX_dup *dup_unused, CRYPTO_EX_free *free_func); 760 OPENSSL_EXPORT int X509_set_ex_data(X509 *r, int idx, void *arg); 761 OPENSSL_EXPORT void *X509_get_ex_data(X509 *r, int idx); 762 OPENSSL_EXPORT int i2d_X509_AUX(X509 *a,unsigned char **pp); 763 OPENSSL_EXPORT X509 * d2i_X509_AUX(X509 **a,const unsigned char **pp,long length); 764 765 OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **psig, 766 const X509_ALGOR **palg, const X509 *x); 767 OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x); 768 769 OPENSSL_EXPORT int X509_alias_set1(X509 *x, unsigned char *name, int len); 770 OPENSSL_EXPORT int X509_keyid_set1(X509 *x, unsigned char *id, int len); 771 OPENSSL_EXPORT unsigned char * X509_alias_get0(X509 *x, int *len); 772 OPENSSL_EXPORT unsigned char * X509_keyid_get0(X509 *x, int *len); 773 OPENSSL_EXPORT int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int); 774 OPENSSL_EXPORT int X509_TRUST_set(int *t, int trust); 775 OPENSSL_EXPORT int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj); 776 OPENSSL_EXPORT int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj); 777 OPENSSL_EXPORT void X509_trust_clear(X509 *x); 778 OPENSSL_EXPORT void X509_reject_clear(X509 *x); 779 780 DECLARE_ASN1_FUNCTIONS(X509_REVOKED) 781 DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO) 782 DECLARE_ASN1_FUNCTIONS(X509_CRL) 783 784 OPENSSL_EXPORT int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev); 785 OPENSSL_EXPORT int X509_CRL_get0_by_serial(X509_CRL *crl, 786 X509_REVOKED **ret, ASN1_INTEGER *serial); 787 OPENSSL_EXPORT int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x); 788 789 OPENSSL_EXPORT X509_PKEY * X509_PKEY_new(void ); 790 OPENSSL_EXPORT void X509_PKEY_free(X509_PKEY *a); 791 792 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI) 793 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC) 794 795 #ifndef OPENSSL_NO_EVP 796 OPENSSL_EXPORT X509_INFO * X509_INFO_new(void); 797 OPENSSL_EXPORT void X509_INFO_free(X509_INFO *a); 798 OPENSSL_EXPORT char * X509_NAME_oneline(X509_NAME *a,char *buf,int size); 799 800 OPENSSL_EXPORT int ASN1_digest(i2d_of_void *i2d,const EVP_MD *type,char *data, 801 unsigned char *md,unsigned int *len); 802 803 OPENSSL_EXPORT int ASN1_item_digest(const ASN1_ITEM *it,const EVP_MD *type,void *data, 804 unsigned char *md,unsigned int *len); 805 806 OPENSSL_EXPORT int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *algor1, 807 ASN1_BIT_STRING *signature,void *data,EVP_PKEY *pkey); 808 809 OPENSSL_EXPORT int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, 810 ASN1_BIT_STRING *signature, 811 void *data, EVP_PKEY *pkey, const EVP_MD *type); 812 OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it, 813 X509_ALGOR *algor1, X509_ALGOR *algor2, 814 ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx); 815 #endif 816 817 OPENSSL_EXPORT int X509_set_version(X509 *x,long version); 818 OPENSSL_EXPORT int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial); 819 OPENSSL_EXPORT ASN1_INTEGER * X509_get_serialNumber(X509 *x); 820 OPENSSL_EXPORT int X509_set_issuer_name(X509 *x, X509_NAME *name); 821 OPENSSL_EXPORT X509_NAME * X509_get_issuer_name(X509 *a); 822 OPENSSL_EXPORT int X509_set_subject_name(X509 *x, X509_NAME *name); 823 OPENSSL_EXPORT X509_NAME * X509_get_subject_name(X509 *a); 824 OPENSSL_EXPORT int X509_set_notBefore(X509 *x, const ASN1_TIME *tm); 825 OPENSSL_EXPORT const ASN1_TIME *X509_get0_notBefore(const X509 *x); 826 OPENSSL_EXPORT int X509_set_notAfter(X509 *x, const ASN1_TIME *tm); 827 OPENSSL_EXPORT const ASN1_TIME *X509_get0_notAfter(const X509 *x); 828 OPENSSL_EXPORT int X509_set_pubkey(X509 *x, EVP_PKEY *pkey); 829 OPENSSL_EXPORT EVP_PKEY * X509_get_pubkey(X509 *x); 830 OPENSSL_EXPORT ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x); 831 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x); 832 833 OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *x,long version); 834 OPENSSL_EXPORT int X509_REQ_set_subject_name(X509_REQ *req,X509_NAME *name); 835 OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey); 836 OPENSSL_EXPORT EVP_PKEY * X509_REQ_get_pubkey(X509_REQ *req); 837 OPENSSL_EXPORT int X509_REQ_extension_nid(int nid); 838 OPENSSL_EXPORT const int * X509_REQ_get_extension_nids(void); 839 OPENSSL_EXPORT void X509_REQ_set_extension_nids(const int *nids); 840 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req); 841 OPENSSL_EXPORT int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, 842 int nid); 843 OPENSSL_EXPORT int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts); 844 OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req); 845 OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, 846 int lastpos); 847 OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, 848 int lastpos); 849 OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc); 850 OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc); 851 OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr); 852 OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req, 853 const ASN1_OBJECT *obj, int type, 854 const unsigned char *bytes, int len); 855 OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, 856 int nid, int type, 857 const unsigned char *bytes, int len); 858 OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req, 859 const char *attrname, int type, 860 const unsigned char *bytes, int len); 861 862 OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *x, long version); 863 OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name); 864 OPENSSL_EXPORT int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm); 865 OPENSSL_EXPORT int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm); 866 OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl); 867 OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl); 868 869 OPENSSL_EXPORT int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial); 870 OPENSSL_EXPORT int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm); 871 872 OPENSSL_EXPORT X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer, 873 EVP_PKEY *skey, const EVP_MD *md, unsigned int flags); 874 875 OPENSSL_EXPORT int X509_REQ_check_private_key(X509_REQ *x509,EVP_PKEY *pkey); 876 877 OPENSSL_EXPORT int X509_check_private_key(X509 *x509,EVP_PKEY *pkey); 878 OPENSSL_EXPORT int X509_chain_check_suiteb(int *perror_depth, 879 X509 *x, STACK_OF(X509) *chain, 880 unsigned long flags); 881 OPENSSL_EXPORT int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk, 882 unsigned long flags); 883 OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain); 884 885 OPENSSL_EXPORT int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b); 886 OPENSSL_EXPORT unsigned long X509_issuer_and_serial_hash(X509 *a); 887 888 OPENSSL_EXPORT int X509_issuer_name_cmp(const X509 *a, const X509 *b); 889 OPENSSL_EXPORT unsigned long X509_issuer_name_hash(X509 *a); 890 891 OPENSSL_EXPORT int X509_subject_name_cmp(const X509 *a, const X509 *b); 892 OPENSSL_EXPORT unsigned long X509_subject_name_hash(X509 *x); 893 894 OPENSSL_EXPORT unsigned long X509_issuer_name_hash_old(X509 *a); 895 OPENSSL_EXPORT unsigned long X509_subject_name_hash_old(X509 *x); 896 897 OPENSSL_EXPORT int X509_cmp(const X509 *a, const X509 *b); 898 OPENSSL_EXPORT int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b); 899 OPENSSL_EXPORT unsigned long X509_NAME_hash(X509_NAME *x); 900 OPENSSL_EXPORT unsigned long X509_NAME_hash_old(X509_NAME *x); 901 902 OPENSSL_EXPORT int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b); 903 OPENSSL_EXPORT int X509_CRL_match(const X509_CRL *a, const X509_CRL *b); 904 #ifndef OPENSSL_NO_FP_API 905 OPENSSL_EXPORT int X509_print_ex_fp(FILE *bp,X509 *x, unsigned long nmflag, unsigned long cflag); 906 OPENSSL_EXPORT int X509_print_fp(FILE *bp,X509 *x); 907 OPENSSL_EXPORT int X509_CRL_print_fp(FILE *bp,X509_CRL *x); 908 OPENSSL_EXPORT int X509_REQ_print_fp(FILE *bp,X509_REQ *req); 909 OPENSSL_EXPORT int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags); 910 #endif 911 912 OPENSSL_EXPORT int X509_NAME_print(BIO *bp, X509_NAME *name, int obase); 913 OPENSSL_EXPORT int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags); 914 OPENSSL_EXPORT int X509_print_ex(BIO *bp,X509 *x, unsigned long nmflag, unsigned long cflag); 915 OPENSSL_EXPORT int X509_print(BIO *bp,X509 *x); 916 OPENSSL_EXPORT int X509_ocspid_print(BIO *bp,X509 *x); 917 OPENSSL_EXPORT int X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent); 918 OPENSSL_EXPORT int X509_CRL_print(BIO *bp,X509_CRL *x); 919 OPENSSL_EXPORT int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag, unsigned long cflag); 920 OPENSSL_EXPORT int X509_REQ_print(BIO *bp,X509_REQ *req); 921 922 OPENSSL_EXPORT int X509_NAME_entry_count(X509_NAME *name); 923 OPENSSL_EXPORT int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, 924 char *buf,int len); 925 OPENSSL_EXPORT int X509_NAME_get_text_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, 926 char *buf,int len); 927 928 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use 929 * lastpos, search after that position on. */ 930 OPENSSL_EXPORT int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); 931 OPENSSL_EXPORT int X509_NAME_get_index_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, 932 int lastpos); 933 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc); 934 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); 935 OPENSSL_EXPORT int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, 936 int loc, int set); 937 OPENSSL_EXPORT int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, 938 unsigned char *bytes, int len, int loc, int set); 939 OPENSSL_EXPORT int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, 940 unsigned char *bytes, int len, int loc, int set); 941 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, 942 const char *field, int type, const unsigned char *bytes, int len); 943 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, 944 int type,unsigned char *bytes, int len); 945 OPENSSL_EXPORT int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, 946 const unsigned char *bytes, int len, int loc, int set); 947 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, 948 const ASN1_OBJECT *obj, int type,const unsigned char *bytes, 949 int len); 950 OPENSSL_EXPORT int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, 951 const ASN1_OBJECT *obj); 952 OPENSSL_EXPORT int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, 953 const unsigned char *bytes, int len); 954 OPENSSL_EXPORT ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); 955 OPENSSL_EXPORT ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); 956 957 OPENSSL_EXPORT int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x); 958 OPENSSL_EXPORT int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, 959 int nid, int lastpos); 960 OPENSSL_EXPORT int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x, 961 const ASN1_OBJECT *obj,int lastpos); 962 OPENSSL_EXPORT int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x, 963 int crit, int lastpos); 964 OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc); 965 OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc); 966 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x, 967 X509_EXTENSION *ex, int loc); 968 969 OPENSSL_EXPORT int X509_get_ext_count(X509 *x); 970 OPENSSL_EXPORT int X509_get_ext_by_NID(X509 *x, int nid, int lastpos); 971 OPENSSL_EXPORT int X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos); 972 OPENSSL_EXPORT int X509_get_ext_by_critical(X509 *x, int crit, int lastpos); 973 OPENSSL_EXPORT X509_EXTENSION *X509_get_ext(X509 *x, int loc); 974 OPENSSL_EXPORT X509_EXTENSION *X509_delete_ext(X509 *x, int loc); 975 OPENSSL_EXPORT int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc); 976 OPENSSL_EXPORT void * X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx); 977 OPENSSL_EXPORT int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit, 978 unsigned long flags); 979 980 OPENSSL_EXPORT int X509_CRL_get_ext_count(X509_CRL *x); 981 OPENSSL_EXPORT int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos); 982 OPENSSL_EXPORT int X509_CRL_get_ext_by_OBJ(X509_CRL *x,ASN1_OBJECT *obj,int lastpos); 983 OPENSSL_EXPORT int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos); 984 OPENSSL_EXPORT X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc); 985 OPENSSL_EXPORT X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc); 986 OPENSSL_EXPORT int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc); 987 OPENSSL_EXPORT void * X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx); 988 OPENSSL_EXPORT int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit, 989 unsigned long flags); 990 991 OPENSSL_EXPORT int X509_REVOKED_get_ext_count(X509_REVOKED *x); 992 OPENSSL_EXPORT int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos); 993 OPENSSL_EXPORT int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos); 994 OPENSSL_EXPORT int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos); 995 OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc); 996 OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); 997 OPENSSL_EXPORT int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc); 998 OPENSSL_EXPORT void * X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx); 999 OPENSSL_EXPORT int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit, 1000 unsigned long flags); 1001 1002 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, 1003 int nid, int crit, ASN1_OCTET_STRING *data); 1004 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, 1005 const ASN1_OBJECT *obj,int crit,ASN1_OCTET_STRING *data); 1006 OPENSSL_EXPORT int X509_EXTENSION_set_object(X509_EXTENSION *ex,const ASN1_OBJECT *obj); 1007 OPENSSL_EXPORT int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit); 1008 OPENSSL_EXPORT int X509_EXTENSION_set_data(X509_EXTENSION *ex, 1009 ASN1_OCTET_STRING *data); 1010 OPENSSL_EXPORT ASN1_OBJECT * X509_EXTENSION_get_object(X509_EXTENSION *ex); 1011 OPENSSL_EXPORT ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne); 1012 OPENSSL_EXPORT int X509_EXTENSION_get_critical(X509_EXTENSION *ex); 1013 1014 OPENSSL_EXPORT int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x); 1015 OPENSSL_EXPORT int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, 1016 int lastpos); 1017 OPENSSL_EXPORT int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, const ASN1_OBJECT *obj, 1018 int lastpos); 1019 OPENSSL_EXPORT X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc); 1020 OPENSSL_EXPORT X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc); 1021 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, 1022 X509_ATTRIBUTE *attr); 1023 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, 1024 const ASN1_OBJECT *obj, int type, 1025 const unsigned char *bytes, int len); 1026 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, 1027 int nid, int type, 1028 const unsigned char *bytes, int len); 1029 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, 1030 const char *attrname, int type, 1031 const unsigned char *bytes, int len); 1032 OPENSSL_EXPORT void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x, 1033 ASN1_OBJECT *obj, int lastpos, int type); 1034 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, 1035 int atrtype, const void *data, int len); 1036 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, 1037 const ASN1_OBJECT *obj, int atrtype, const void *data, int len); 1038 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, 1039 const char *atrname, int type, const unsigned char *bytes, int len); 1040 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj); 1041 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len); 1042 OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, 1043 int atrtype, void *data); 1044 OPENSSL_EXPORT int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr); 1045 OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr); 1046 OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx); 1047 1048 OPENSSL_EXPORT int X509_verify_cert(X509_STORE_CTX *ctx); 1049 1050 /* lookup a cert from a X509 STACK */ 1051 OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name, 1052 ASN1_INTEGER *serial); 1053 OPENSSL_EXPORT X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name); 1054 1055 /* PKCS#8 utilities */ 1056 1057 DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO) 1058 1059 OPENSSL_EXPORT EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8); 1060 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey); 1061 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken); 1062 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *PKCS8_set_broken(PKCS8_PRIV_KEY_INFO *p8, int broken); 1063 1064 OPENSSL_EXPORT int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj, 1065 int version, int ptype, void *pval, 1066 unsigned char *penc, int penclen); 1067 OPENSSL_EXPORT int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg, 1068 const unsigned char **pk, int *ppklen, 1069 X509_ALGOR **pa, 1070 PKCS8_PRIV_KEY_INFO *p8); 1071 1072 OPENSSL_EXPORT int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj, 1073 int ptype, void *pval, 1074 unsigned char *penc, int penclen); 1075 OPENSSL_EXPORT int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, 1076 const unsigned char **pk, int *ppklen, 1077 X509_ALGOR **pa, 1078 X509_PUBKEY *pub); 1079 1080 OPENSSL_EXPORT int X509_check_trust(X509 *x, int id, int flags); 1081 OPENSSL_EXPORT int X509_TRUST_get_count(void); 1082 OPENSSL_EXPORT X509_TRUST * X509_TRUST_get0(int idx); 1083 OPENSSL_EXPORT int X509_TRUST_get_by_id(int id); 1084 OPENSSL_EXPORT int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int), 1085 char *name, int arg1, void *arg2); 1086 OPENSSL_EXPORT void X509_TRUST_cleanup(void); 1087 OPENSSL_EXPORT int X509_TRUST_get_flags(X509_TRUST *xp); 1088 OPENSSL_EXPORT char *X509_TRUST_get0_name(X509_TRUST *xp); 1089 OPENSSL_EXPORT int X509_TRUST_get_trust(X509_TRUST *xp); 1090 1091 1092 typedef struct rsa_pss_params_st { 1093 X509_ALGOR *hashAlgorithm; 1094 X509_ALGOR *maskGenAlgorithm; 1095 ASN1_INTEGER *saltLength; 1096 ASN1_INTEGER *trailerField; 1097 } RSA_PSS_PARAMS; 1098 1099 DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS) 1100 1101 1102 1103 #ifdef __cplusplus 1104 } 1105 #endif 1106 1107 #if !defined(BORINGSSL_NO_CXX) 1108 extern "C++" { 1109 1110 namespace bssl { 1111 1112 BORINGSSL_MAKE_DELETER(NETSCAPE_SPKI, NETSCAPE_SPKI_free) 1113 BORINGSSL_MAKE_DELETER(X509, X509_free) 1114 BORINGSSL_MAKE_DELETER(X509_ALGOR, X509_ALGOR_free) 1115 BORINGSSL_MAKE_DELETER(X509_CRL, X509_CRL_free) 1116 BORINGSSL_MAKE_DELETER(X509_CRL_METHOD, X509_CRL_METHOD_free) 1117 BORINGSSL_MAKE_DELETER(X509_EXTENSION, X509_EXTENSION_free) 1118 BORINGSSL_MAKE_DELETER(X509_INFO, X509_INFO_free) 1119 BORINGSSL_MAKE_DELETER(X509_LOOKUP, X509_LOOKUP_free) 1120 BORINGSSL_MAKE_DELETER(X509_NAME, X509_NAME_free) 1121 BORINGSSL_MAKE_DELETER(X509_NAME_ENTRY, X509_NAME_ENTRY_free) 1122 BORINGSSL_MAKE_DELETER(X509_PKEY, X509_PKEY_free) 1123 BORINGSSL_MAKE_DELETER(X509_POLICY_TREE, X509_policy_tree_free) 1124 BORINGSSL_MAKE_DELETER(X509_PUBKEY, X509_PUBKEY_free) 1125 BORINGSSL_MAKE_DELETER(X509_REQ, X509_REQ_free) 1126 BORINGSSL_MAKE_DELETER(X509_REVOKED, X509_REVOKED_free) 1127 BORINGSSL_MAKE_DELETER(X509_SIG, X509_SIG_free) 1128 BORINGSSL_MAKE_DELETER(X509_STORE, X509_STORE_free) 1129 BORINGSSL_MAKE_DELETER(X509_STORE_CTX, X509_STORE_CTX_free) 1130 BORINGSSL_MAKE_DELETER(X509_VERIFY_PARAM, X509_VERIFY_PARAM_free) 1131 1132 using ScopedX509_STORE_CTX = 1133 internal::StackAllocated<X509_STORE_CTX, void, X509_STORE_CTX_zero, 1134 X509_STORE_CTX_cleanup>; 1135 1136 } // namespace bssl 1137 1138 } /* extern C++ */ 1139 #endif /* !BORINGSSL_NO_CXX */ 1140 1141 #define X509_R_AKID_MISMATCH 100 1142 #define X509_R_BAD_PKCS7_VERSION 101 1143 #define X509_R_BAD_X509_FILETYPE 102 1144 #define X509_R_BASE64_DECODE_ERROR 103 1145 #define X509_R_CANT_CHECK_DH_KEY 104 1146 #define X509_R_CERT_ALREADY_IN_HASH_TABLE 105 1147 #define X509_R_CRL_ALREADY_DELTA 106 1148 #define X509_R_CRL_VERIFY_FAILURE 107 1149 #define X509_R_IDP_MISMATCH 108 1150 #define X509_R_INVALID_BIT_STRING_BITS_LEFT 109 1151 #define X509_R_INVALID_DIRECTORY 110 1152 #define X509_R_INVALID_FIELD_NAME 111 1153 #define X509_R_INVALID_PSS_PARAMETERS 112 1154 #define X509_R_INVALID_TRUST 113 1155 #define X509_R_ISSUER_MISMATCH 114 1156 #define X509_R_KEY_TYPE_MISMATCH 115 1157 #define X509_R_KEY_VALUES_MISMATCH 116 1158 #define X509_R_LOADING_CERT_DIR 117 1159 #define X509_R_LOADING_DEFAULTS 118 1160 #define X509_R_NEWER_CRL_NOT_NEWER 119 1161 #define X509_R_NOT_PKCS7_SIGNED_DATA 120 1162 #define X509_R_NO_CERTIFICATES_INCLUDED 121 1163 #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY 122 1164 #define X509_R_NO_CRLS_INCLUDED 123 1165 #define X509_R_NO_CRL_NUMBER 124 1166 #define X509_R_PUBLIC_KEY_DECODE_ERROR 125 1167 #define X509_R_PUBLIC_KEY_ENCODE_ERROR 126 1168 #define X509_R_SHOULD_RETRY 127 1169 #define X509_R_UNKNOWN_KEY_TYPE 128 1170 #define X509_R_UNKNOWN_NID 129 1171 #define X509_R_UNKNOWN_PURPOSE_ID 130 1172 #define X509_R_UNKNOWN_TRUST_ID 131 1173 #define X509_R_UNSUPPORTED_ALGORITHM 132 1174 #define X509_R_WRONG_LOOKUP_TYPE 133 1175 #define X509_R_WRONG_TYPE 134 1176 #define X509_R_NAME_TOO_LONG 135 1177 #define X509_R_INVALID_PARAMETER 136 1178 1179 #endif 1180