x509.h 52 KB

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