x509.h 44 KB

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