x509.h.in 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086
  1. /*
  2. * {- join("\n * ", @autowarntext) -}
  3. *
  4. * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
  5. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
  6. *
  7. * Licensed under the Apache License 2.0 (the "License"). You may not use
  8. * this file except in compliance with the License. You can obtain a copy
  9. * in the file LICENSE in the source distribution or at
  10. * https://www.openssl.org/source/license.html
  11. */
  12. {-
  13. use OpenSSL::stackhash qw(generate_stack_macros);
  14. -}
  15. #ifndef OPENSSL_X509_H
  16. # define OPENSSL_X509_H
  17. # pragma once
  18. # include <openssl/macros.h>
  19. # ifndef OPENSSL_NO_DEPRECATED_3_0
  20. # define HEADER_X509_H
  21. # endif
  22. # include <openssl/e_os2.h>
  23. # include <openssl/types.h>
  24. # include <openssl/symhacks.h>
  25. # include <openssl/buffer.h>
  26. # include <openssl/evp.h>
  27. # include <openssl/bio.h>
  28. # include <openssl/asn1.h>
  29. # include <openssl/safestack.h>
  30. # include <openssl/ec.h>
  31. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  32. # include <openssl/rsa.h>
  33. # include <openssl/dsa.h>
  34. # include <openssl/dh.h>
  35. # endif
  36. # include <openssl/sha.h>
  37. # include <openssl/x509err.h>
  38. # ifndef OPENSSL_NO_STDIO
  39. # include <stdio.h>
  40. # endif
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44. /* Needed stacks for types defined in other headers */
  45. {-
  46. generate_stack_macros("X509_NAME")
  47. .generate_stack_macros("X509")
  48. .generate_stack_macros("X509_REVOKED")
  49. .generate_stack_macros("X509_CRL");
  50. -}
  51. /* Flags for X509_get_signature_info() */
  52. /* Signature info is valid */
  53. # define X509_SIG_INFO_VALID 0x1
  54. /* Signature is suitable for TLS use */
  55. # define X509_SIG_INFO_TLS 0x2
  56. # define X509_FILETYPE_PEM 1
  57. # define X509_FILETYPE_ASN1 2
  58. # define X509_FILETYPE_DEFAULT 3
  59. # define X509v3_KU_DIGITAL_SIGNATURE 0x0080
  60. # define X509v3_KU_NON_REPUDIATION 0x0040
  61. # define X509v3_KU_KEY_ENCIPHERMENT 0x0020
  62. # define X509v3_KU_DATA_ENCIPHERMENT 0x0010
  63. # define X509v3_KU_KEY_AGREEMENT 0x0008
  64. # define X509v3_KU_KEY_CERT_SIGN 0x0004
  65. # define X509v3_KU_CRL_SIGN 0x0002
  66. # define X509v3_KU_ENCIPHER_ONLY 0x0001
  67. # define X509v3_KU_DECIPHER_ONLY 0x8000
  68. # define X509v3_KU_UNDEF 0xffff
  69. struct X509_algor_st {
  70. ASN1_OBJECT *algorithm;
  71. ASN1_TYPE *parameter;
  72. } /* X509_ALGOR */ ;
  73. typedef STACK_OF(X509_ALGOR) X509_ALGORS;
  74. typedef struct X509_val_st {
  75. ASN1_TIME *notBefore;
  76. ASN1_TIME *notAfter;
  77. } X509_VAL;
  78. typedef struct X509_sig_st X509_SIG;
  79. typedef struct X509_name_entry_st X509_NAME_ENTRY;
  80. {-
  81. generate_stack_macros("X509_NAME_ENTRY");
  82. -}
  83. # define X509_EX_V_NETSCAPE_HACK 0x8000
  84. # define X509_EX_V_INIT 0x0001
  85. typedef struct X509_extension_st X509_EXTENSION;
  86. {-
  87. generate_stack_macros("X509_EXTENSION");
  88. -}
  89. typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
  90. typedef struct x509_attributes_st X509_ATTRIBUTE;
  91. {-
  92. generate_stack_macros("X509_ATTRIBUTE");
  93. -}
  94. typedef struct X509_req_info_st X509_REQ_INFO;
  95. typedef struct X509_req_st X509_REQ;
  96. typedef struct x509_cert_aux_st X509_CERT_AUX;
  97. typedef struct x509_cinf_st X509_CINF;
  98. /* Flags for X509_print_ex() */
  99. # define X509_FLAG_COMPAT 0
  100. # define X509_FLAG_NO_HEADER 1L
  101. # define X509_FLAG_NO_VERSION (1L << 1)
  102. # define X509_FLAG_NO_SERIAL (1L << 2)
  103. # define X509_FLAG_NO_SIGNAME (1L << 3)
  104. # define X509_FLAG_NO_ISSUER (1L << 4)
  105. # define X509_FLAG_NO_VALIDITY (1L << 5)
  106. # define X509_FLAG_NO_SUBJECT (1L << 6)
  107. # define X509_FLAG_NO_PUBKEY (1L << 7)
  108. # define X509_FLAG_NO_EXTENSIONS (1L << 8)
  109. # define X509_FLAG_NO_SIGDUMP (1L << 9)
  110. # define X509_FLAG_NO_AUX (1L << 10)
  111. # define X509_FLAG_NO_ATTRIBUTES (1L << 11)
  112. # define X509_FLAG_NO_IDS (1L << 12)
  113. # define X509_FLAG_EXTENSIONS_ONLY_KID (1L << 13)
  114. /* Flags specific to X509_NAME_print_ex() */
  115. /* The field separator information */
  116. # define XN_FLAG_SEP_MASK (0xf << 16)
  117. # define XN_FLAG_COMPAT 0/* Traditional; use old X509_NAME_print */
  118. # define XN_FLAG_SEP_COMMA_PLUS (1 << 16)/* RFC2253 ,+ */
  119. # define XN_FLAG_SEP_CPLUS_SPC (2 << 16)/* ,+ spaced: more readable */
  120. # define XN_FLAG_SEP_SPLUS_SPC (3 << 16)/* ;+ spaced */
  121. # define XN_FLAG_SEP_MULTILINE (4 << 16)/* One line per field */
  122. # define XN_FLAG_DN_REV (1 << 20)/* Reverse DN order */
  123. /* How the field name is shown */
  124. # define XN_FLAG_FN_MASK (0x3 << 21)
  125. # define XN_FLAG_FN_SN 0/* Object short name */
  126. # define XN_FLAG_FN_LN (1 << 21)/* Object long name */
  127. # define XN_FLAG_FN_OID (2 << 21)/* Always use OIDs */
  128. # define XN_FLAG_FN_NONE (3 << 21)/* No field names */
  129. # define XN_FLAG_SPC_EQ (1 << 23)/* Put spaces round '=' */
  130. /*
  131. * This determines if we dump fields we don't recognise: RFC2253 requires
  132. * this.
  133. */
  134. # define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
  135. # define XN_FLAG_FN_ALIGN (1 << 25)/* Align field names to 20
  136. * characters */
  137. /* Complete set of RFC2253 flags */
  138. # define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \
  139. XN_FLAG_SEP_COMMA_PLUS | \
  140. XN_FLAG_DN_REV | \
  141. XN_FLAG_FN_SN | \
  142. XN_FLAG_DUMP_UNKNOWN_FIELDS)
  143. /* readable oneline form */
  144. # define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \
  145. ASN1_STRFLGS_ESC_QUOTE | \
  146. XN_FLAG_SEP_CPLUS_SPC | \
  147. XN_FLAG_SPC_EQ | \
  148. XN_FLAG_FN_SN)
  149. /* readable multiline form */
  150. # define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \
  151. ASN1_STRFLGS_ESC_MSB | \
  152. XN_FLAG_SEP_MULTILINE | \
  153. XN_FLAG_SPC_EQ | \
  154. XN_FLAG_FN_LN | \
  155. XN_FLAG_FN_ALIGN)
  156. typedef struct X509_crl_info_st X509_CRL_INFO;
  157. typedef struct private_key_st {
  158. int version;
  159. /* The PKCS#8 data types */
  160. X509_ALGOR *enc_algor;
  161. ASN1_OCTET_STRING *enc_pkey; /* encrypted pub key */
  162. /* When decrypted, the following will not be NULL */
  163. EVP_PKEY *dec_pkey;
  164. /* used to encrypt and decrypt */
  165. int key_length;
  166. char *key_data;
  167. int key_free; /* true if we should auto free key_data */
  168. /* expanded version of 'enc_algor' */
  169. EVP_CIPHER_INFO cipher;
  170. } X509_PKEY;
  171. typedef struct X509_info_st {
  172. X509 *x509;
  173. X509_CRL *crl;
  174. X509_PKEY *x_pkey;
  175. EVP_CIPHER_INFO enc_cipher;
  176. int enc_len;
  177. char *enc_data;
  178. } X509_INFO;
  179. {-
  180. generate_stack_macros("X509_INFO");
  181. -}
  182. /*
  183. * The next 2 structures and their 8 routines are used to manipulate Netscape's
  184. * spki structures - useful if you are writing a CA web page
  185. */
  186. typedef struct Netscape_spkac_st {
  187. X509_PUBKEY *pubkey;
  188. ASN1_IA5STRING *challenge; /* challenge sent in atlas >= PR2 */
  189. } NETSCAPE_SPKAC;
  190. typedef struct Netscape_spki_st {
  191. NETSCAPE_SPKAC *spkac; /* signed public key and challenge */
  192. X509_ALGOR sig_algor;
  193. ASN1_BIT_STRING *signature;
  194. } NETSCAPE_SPKI;
  195. /* Netscape certificate sequence structure */
  196. typedef struct Netscape_certificate_sequence {
  197. ASN1_OBJECT *type;
  198. STACK_OF(X509) *certs;
  199. } NETSCAPE_CERT_SEQUENCE;
  200. /*- Unused (and iv length is wrong)
  201. typedef struct CBCParameter_st
  202. {
  203. unsigned char iv[8];
  204. } CBC_PARAM;
  205. */
  206. /* Password based encryption structure */
  207. typedef struct PBEPARAM_st {
  208. ASN1_OCTET_STRING *salt;
  209. ASN1_INTEGER *iter;
  210. } PBEPARAM;
  211. /* Password based encryption V2 structures */
  212. typedef struct PBE2PARAM_st {
  213. X509_ALGOR *keyfunc;
  214. X509_ALGOR *encryption;
  215. } PBE2PARAM;
  216. typedef struct PBKDF2PARAM_st {
  217. /* Usually OCTET STRING but could be anything */
  218. ASN1_TYPE *salt;
  219. ASN1_INTEGER *iter;
  220. ASN1_INTEGER *keylength;
  221. X509_ALGOR *prf;
  222. } PBKDF2PARAM;
  223. #ifndef OPENSSL_NO_SCRYPT
  224. typedef struct SCRYPT_PARAMS_st {
  225. ASN1_OCTET_STRING *salt;
  226. ASN1_INTEGER *costParameter;
  227. ASN1_INTEGER *blockSize;
  228. ASN1_INTEGER *parallelizationParameter;
  229. ASN1_INTEGER *keyLength;
  230. } SCRYPT_PARAMS;
  231. #endif
  232. #ifdef __cplusplus
  233. }
  234. #endif
  235. # include <openssl/x509_vfy.h>
  236. # include <openssl/pkcs7.h>
  237. #ifdef __cplusplus
  238. extern "C" {
  239. #endif
  240. # define X509_EXT_PACK_UNKNOWN 1
  241. # define X509_EXT_PACK_STRING 2
  242. # define X509_extract_key(x) X509_get_pubkey(x)/*****/
  243. # define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
  244. # define X509_name_cmp(a,b) X509_NAME_cmp((a),(b))
  245. void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
  246. X509_CRL_METHOD *X509_CRL_METHOD_new(int (*crl_init) (X509_CRL *crl),
  247. int (*crl_free) (X509_CRL *crl),
  248. int (*crl_lookup) (X509_CRL *crl,
  249. X509_REVOKED **ret,
  250. const
  251. ASN1_INTEGER *serial,
  252. const
  253. X509_NAME *issuer),
  254. int (*crl_verify) (X509_CRL *crl,
  255. EVP_PKEY *pk));
  256. void X509_CRL_METHOD_free(X509_CRL_METHOD *m);
  257. void X509_CRL_set_meth_data(X509_CRL *crl, void *dat);
  258. void *X509_CRL_get_meth_data(X509_CRL *crl);
  259. const char *X509_verify_cert_error_string(long n);
  260. int X509_verify(X509 *a, EVP_PKEY *r);
  261. int X509_self_signed(X509 *cert, int verify_signature);
  262. int X509_REQ_verify_ex(X509_REQ *a, EVP_PKEY *r, OSSL_LIB_CTX *libctx,
  263. const char *propq);
  264. int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
  265. int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
  266. int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
  267. NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str, int len);
  268. char *NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x);
  269. EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x);
  270. int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey);
  271. int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
  272. int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent);
  273. int X509_signature_print(BIO *bp, const X509_ALGOR *alg,
  274. const ASN1_STRING *sig);
  275. int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
  276. int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx);
  277. int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
  278. int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
  279. int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md);
  280. int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx);
  281. int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md);
  282. int X509_pubkey_digest(const X509 *data, const EVP_MD *type,
  283. unsigned char *md, unsigned int *len);
  284. int X509_digest(const X509 *data, const EVP_MD *type,
  285. unsigned char *md, unsigned int *len);
  286. ASN1_OCTET_STRING *X509_digest_sig(const X509 *cert,
  287. EVP_MD **md_used, int *md_is_fallback);
  288. int X509_CRL_digest(const X509_CRL *data, const EVP_MD *type,
  289. unsigned char *md, unsigned int *len);
  290. int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
  291. unsigned char *md, unsigned int *len);
  292. int X509_NAME_digest(const X509_NAME *data, const EVP_MD *type,
  293. unsigned char *md, unsigned int *len);
  294. X509 *X509_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
  295. X509_CRL *X509_CRL_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
  296. # ifndef OPENSSL_NO_DEPRECATED_3_0
  297. # include <openssl/http.h> /* OSSL_HTTP_REQ_CTX_nbio_d2i */
  298. # define X509_http_nbio(rctx, pcert) \
  299. OSSL_HTTP_REQ_CTX_nbio_d2i(rctx, pcert, ASN1_ITEM_rptr(X509))
  300. # define X509_CRL_http_nbio(rctx, pcrl) \
  301. OSSL_HTTP_REQ_CTX_nbio_d2i(rctx, pcrl, ASN1_ITEM_rptr(X509_CRL))
  302. # endif
  303. # ifndef OPENSSL_NO_STDIO
  304. X509 *d2i_X509_fp(FILE *fp, X509 **x509);
  305. int i2d_X509_fp(FILE *fp, const X509 *x509);
  306. X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl);
  307. int i2d_X509_CRL_fp(FILE *fp, const X509_CRL *crl);
  308. X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
  309. int i2d_X509_REQ_fp(FILE *fp, const X509_REQ *req);
  310. # ifndef OPENSSL_NO_DEPRECATED_3_0
  311. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa);
  312. OSSL_DEPRECATEDIN_3_0 int i2d_RSAPrivateKey_fp(FILE *fp, const RSA *rsa);
  313. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa);
  314. OSSL_DEPRECATEDIN_3_0 int i2d_RSAPublicKey_fp(FILE *fp, const RSA *rsa);
  315. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa);
  316. OSSL_DEPRECATEDIN_3_0 int i2d_RSA_PUBKEY_fp(FILE *fp, const RSA *rsa);
  317. # endif
  318. # ifndef OPENSSL_NO_DEPRECATED_3_0
  319. # ifndef OPENSSL_NO_DSA
  320. OSSL_DEPRECATEDIN_3_0 DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
  321. OSSL_DEPRECATEDIN_3_0 int i2d_DSA_PUBKEY_fp(FILE *fp, const DSA *dsa);
  322. OSSL_DEPRECATEDIN_3_0 DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa);
  323. OSSL_DEPRECATEDIN_3_0 int i2d_DSAPrivateKey_fp(FILE *fp, const DSA *dsa);
  324. # endif
  325. # endif
  326. # ifndef OPENSSL_NO_DEPRECATED_3_0
  327. # ifndef OPENSSL_NO_EC
  328. OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey);
  329. OSSL_DEPRECATEDIN_3_0 int i2d_EC_PUBKEY_fp(FILE *fp, const EC_KEY *eckey);
  330. OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey);
  331. OSSL_DEPRECATEDIN_3_0 int i2d_ECPrivateKey_fp(FILE *fp, const EC_KEY *eckey);
  332. # endif /* OPENSSL_NO_EC */
  333. # endif /* OPENSSL_NO_DEPRECATED_3_0 */
  334. X509_SIG *d2i_PKCS8_fp(FILE *fp, X509_SIG **p8);
  335. int i2d_PKCS8_fp(FILE *fp, const X509_SIG *p8);
  336. X509_PUBKEY *d2i_X509_PUBKEY_fp(FILE *fp, X509_PUBKEY **xpk);
  337. int i2d_X509_PUBKEY_fp(FILE *fp, const X509_PUBKEY *xpk);
  338. PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,
  339. PKCS8_PRIV_KEY_INFO **p8inf);
  340. int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, const PKCS8_PRIV_KEY_INFO *p8inf);
  341. int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, const EVP_PKEY *key);
  342. int i2d_PrivateKey_fp(FILE *fp, const EVP_PKEY *pkey);
  343. EVP_PKEY *d2i_PrivateKey_ex_fp(FILE *fp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
  344. const char *propq);
  345. EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
  346. int i2d_PUBKEY_fp(FILE *fp, const EVP_PKEY *pkey);
  347. EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
  348. # endif
  349. X509 *d2i_X509_bio(BIO *bp, X509 **x509);
  350. int i2d_X509_bio(BIO *bp, const X509 *x509);
  351. X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl);
  352. int i2d_X509_CRL_bio(BIO *bp, const X509_CRL *crl);
  353. X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req);
  354. int i2d_X509_REQ_bio(BIO *bp, const X509_REQ *req);
  355. # ifndef OPENSSL_NO_DEPRECATED_3_0
  356. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa);
  357. OSSL_DEPRECATEDIN_3_0 int i2d_RSAPrivateKey_bio(BIO *bp, const RSA *rsa);
  358. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa);
  359. OSSL_DEPRECATEDIN_3_0 int i2d_RSAPublicKey_bio(BIO *bp, const RSA *rsa);
  360. OSSL_DEPRECATEDIN_3_0 RSA *d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa);
  361. OSSL_DEPRECATEDIN_3_0 int i2d_RSA_PUBKEY_bio(BIO *bp, const RSA *rsa);
  362. # endif
  363. # ifndef OPENSSL_NO_DEPRECATED_3_0
  364. # ifndef OPENSSL_NO_DSA
  365. OSSL_DEPRECATEDIN_3_0 DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa);
  366. OSSL_DEPRECATEDIN_3_0 int i2d_DSA_PUBKEY_bio(BIO *bp, const DSA *dsa);
  367. OSSL_DEPRECATEDIN_3_0 DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa);
  368. OSSL_DEPRECATEDIN_3_0 int i2d_DSAPrivateKey_bio(BIO *bp, const DSA *dsa);
  369. # endif
  370. # endif
  371. # ifndef OPENSSL_NO_DEPRECATED_3_0
  372. # ifndef OPENSSL_NO_EC
  373. OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey);
  374. OSSL_DEPRECATEDIN_3_0 int i2d_EC_PUBKEY_bio(BIO *bp, const EC_KEY *eckey);
  375. OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey);
  376. OSSL_DEPRECATEDIN_3_0 int i2d_ECPrivateKey_bio(BIO *bp, const EC_KEY *eckey);
  377. # endif /* OPENSSL_NO_EC */
  378. # endif /* OPENSSL_NO_DEPRECATED_3_0 */
  379. X509_SIG *d2i_PKCS8_bio(BIO *bp, X509_SIG **p8);
  380. int i2d_PKCS8_bio(BIO *bp, const X509_SIG *p8);
  381. X509_PUBKEY *d2i_X509_PUBKEY_bio(BIO *bp, X509_PUBKEY **xpk);
  382. int i2d_X509_PUBKEY_bio(BIO *bp, const X509_PUBKEY *xpk);
  383. PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,
  384. PKCS8_PRIV_KEY_INFO **p8inf);
  385. int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, const PKCS8_PRIV_KEY_INFO *p8inf);
  386. int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, const EVP_PKEY *key);
  387. int i2d_PrivateKey_bio(BIO *bp, const EVP_PKEY *pkey);
  388. EVP_PKEY *d2i_PrivateKey_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx,
  389. const char *propq);
  390. EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
  391. int i2d_PUBKEY_bio(BIO *bp, const EVP_PKEY *pkey);
  392. EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
  393. DECLARE_ASN1_DUP_FUNCTION(X509)
  394. DECLARE_ASN1_DUP_FUNCTION(X509_ALGOR)
  395. DECLARE_ASN1_DUP_FUNCTION(X509_ATTRIBUTE)
  396. DECLARE_ASN1_DUP_FUNCTION(X509_CRL)
  397. DECLARE_ASN1_DUP_FUNCTION(X509_EXTENSION)
  398. DECLARE_ASN1_DUP_FUNCTION(X509_PUBKEY)
  399. DECLARE_ASN1_DUP_FUNCTION(X509_REQ)
  400. DECLARE_ASN1_DUP_FUNCTION(X509_REVOKED)
  401. int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *aobj, int ptype,
  402. void *pval);
  403. void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype,
  404. const void **ppval, const X509_ALGOR *algor);
  405. void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
  406. int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
  407. int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src);
  408. DECLARE_ASN1_DUP_FUNCTION(X509_NAME)
  409. DECLARE_ASN1_DUP_FUNCTION(X509_NAME_ENTRY)
  410. int X509_cmp_time(const ASN1_TIME *s, time_t *t);
  411. int X509_cmp_current_time(const ASN1_TIME *s);
  412. int X509_cmp_timeframe(const X509_VERIFY_PARAM *vpm,
  413. const ASN1_TIME *start, const ASN1_TIME *end);
  414. ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *t);
  415. ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
  416. int offset_day, long offset_sec, time_t *t);
  417. ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj);
  418. const char *X509_get_default_cert_area(void);
  419. const char *X509_get_default_cert_dir(void);
  420. const char *X509_get_default_cert_file(void);
  421. const char *X509_get_default_cert_dir_env(void);
  422. const char *X509_get_default_cert_file_env(void);
  423. const char *X509_get_default_private_dir(void);
  424. X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
  425. X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey);
  426. DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
  427. DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
  428. DECLARE_ASN1_FUNCTIONS(X509_VAL)
  429. DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
  430. X509_PUBKEY *X509_PUBKEY_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  431. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
  432. EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key);
  433. EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key);
  434. int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain);
  435. long X509_get_pathlen(X509 *x);
  436. DECLARE_ASN1_ENCODE_FUNCTIONS_only(EVP_PKEY, PUBKEY)
  437. EVP_PKEY *d2i_PUBKEY_ex(EVP_PKEY **a, const unsigned char **pp, long length,
  438. OSSL_LIB_CTX *libctx, const char *propq);
  439. # ifndef OPENSSL_NO_DEPRECATED_3_0
  440. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0,RSA, RSA_PUBKEY)
  441. # endif
  442. # ifndef OPENSSL_NO_DEPRECATED_3_0
  443. # ifndef OPENSSL_NO_DSA
  444. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0,DSA, DSA_PUBKEY)
  445. # endif
  446. # endif
  447. # ifndef OPENSSL_NO_DEPRECATED_3_0
  448. # ifndef OPENSSL_NO_EC
  449. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0, EC_KEY, EC_PUBKEY)
  450. # endif
  451. # endif
  452. DECLARE_ASN1_FUNCTIONS(X509_SIG)
  453. void X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg,
  454. const ASN1_OCTET_STRING **pdigest);
  455. void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg,
  456. ASN1_OCTET_STRING **pdigest);
  457. DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
  458. DECLARE_ASN1_FUNCTIONS(X509_REQ)
  459. X509_REQ *X509_REQ_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  460. DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
  461. X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value);
  462. DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
  463. DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS)
  464. DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY)
  465. DECLARE_ASN1_FUNCTIONS(X509_NAME)
  466. int X509_NAME_set(X509_NAME **xn, const X509_NAME *name);
  467. DECLARE_ASN1_FUNCTIONS(X509_CINF)
  468. DECLARE_ASN1_FUNCTIONS(X509)
  469. X509 *X509_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  470. DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
  471. #define X509_get_ex_new_index(l, p, newf, dupf, freef) \
  472. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509, l, p, newf, dupf, freef)
  473. int X509_set_ex_data(X509 *r, int idx, void *arg);
  474. void *X509_get_ex_data(const X509 *r, int idx);
  475. DECLARE_ASN1_ENCODE_FUNCTIONS_only(X509,X509_AUX)
  476. int i2d_re_X509_tbs(X509 *x, unsigned char **pp);
  477. int X509_SIG_INFO_get(const X509_SIG_INFO *siginf, int *mdnid, int *pknid,
  478. int *secbits, uint32_t *flags);
  479. void X509_SIG_INFO_set(X509_SIG_INFO *siginf, int mdnid, int pknid,
  480. int secbits, uint32_t flags);
  481. int X509_get_signature_info(X509 *x, int *mdnid, int *pknid, int *secbits,
  482. uint32_t *flags);
  483. void X509_get0_signature(const ASN1_BIT_STRING **psig,
  484. const X509_ALGOR **palg, const X509 *x);
  485. int X509_get_signature_nid(const X509 *x);
  486. void X509_set0_distinguishing_id(X509 *x, ASN1_OCTET_STRING *d_id);
  487. ASN1_OCTET_STRING *X509_get0_distinguishing_id(X509 *x);
  488. void X509_REQ_set0_distinguishing_id(X509_REQ *x, ASN1_OCTET_STRING *d_id);
  489. ASN1_OCTET_STRING *X509_REQ_get0_distinguishing_id(X509_REQ *x);
  490. int X509_alias_set1(X509 *x, const unsigned char *name, int len);
  491. int X509_keyid_set1(X509 *x, const unsigned char *id, int len);
  492. unsigned char *X509_alias_get0(X509 *x, int *len);
  493. unsigned char *X509_keyid_get0(X509 *x, int *len);
  494. DECLARE_ASN1_FUNCTIONS(X509_REVOKED)
  495. DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO)
  496. DECLARE_ASN1_FUNCTIONS(X509_CRL)
  497. X509_CRL *X509_CRL_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  498. int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
  499. int X509_CRL_get0_by_serial(X509_CRL *crl,
  500. X509_REVOKED **ret, const ASN1_INTEGER *serial);
  501. int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x);
  502. X509_PKEY *X509_PKEY_new(void);
  503. void X509_PKEY_free(X509_PKEY *a);
  504. DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
  505. DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)
  506. DECLARE_ASN1_FUNCTIONS(NETSCAPE_CERT_SEQUENCE)
  507. X509_INFO *X509_INFO_new(void);
  508. void X509_INFO_free(X509_INFO *a);
  509. char *X509_NAME_oneline(const X509_NAME *a, char *buf, int size);
  510. #ifndef OPENSSL_NO_DEPRECATED_3_0
  511. OSSL_DEPRECATEDIN_3_0
  512. int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1,
  513. ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey);
  514. OSSL_DEPRECATEDIN_3_0
  515. int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
  516. unsigned char *md, unsigned int *len);
  517. OSSL_DEPRECATEDIN_3_0
  518. int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2,
  519. ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey,
  520. const EVP_MD *type);
  521. #endif
  522. int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *data,
  523. unsigned char *md, unsigned int *len);
  524. int ASN1_item_verify(const ASN1_ITEM *it, const X509_ALGOR *alg,
  525. const ASN1_BIT_STRING *signature, const void *data,
  526. EVP_PKEY *pkey);
  527. int ASN1_item_verify_ctx(const ASN1_ITEM *it, const X509_ALGOR *alg,
  528. const ASN1_BIT_STRING *signature, const void *data,
  529. EVP_MD_CTX *ctx);
  530. int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2,
  531. ASN1_BIT_STRING *signature, const void *data,
  532. EVP_PKEY *pkey, const EVP_MD *md);
  533. int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
  534. X509_ALGOR *algor2, ASN1_BIT_STRING *signature,
  535. const void *data, EVP_MD_CTX *ctx);
  536. #define X509_VERSION_1 0
  537. #define X509_VERSION_2 1
  538. #define X509_VERSION_3 2
  539. long X509_get_version(const X509 *x);
  540. int X509_set_version(X509 *x, long version);
  541. int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
  542. ASN1_INTEGER *X509_get_serialNumber(X509 *x);
  543. const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x);
  544. int X509_set_issuer_name(X509 *x, const X509_NAME *name);
  545. X509_NAME *X509_get_issuer_name(const X509 *a);
  546. int X509_set_subject_name(X509 *x, const X509_NAME *name);
  547. X509_NAME *X509_get_subject_name(const X509 *a);
  548. const ASN1_TIME * X509_get0_notBefore(const X509 *x);
  549. ASN1_TIME *X509_getm_notBefore(const X509 *x);
  550. int X509_set1_notBefore(X509 *x, const ASN1_TIME *tm);
  551. const ASN1_TIME *X509_get0_notAfter(const X509 *x);
  552. ASN1_TIME *X509_getm_notAfter(const X509 *x);
  553. int X509_set1_notAfter(X509 *x, const ASN1_TIME *tm);
  554. int X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
  555. int X509_up_ref(X509 *x);
  556. int X509_get_signature_type(const X509 *x);
  557. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  558. # define X509_get_notBefore X509_getm_notBefore
  559. # define X509_get_notAfter X509_getm_notAfter
  560. # define X509_set_notBefore X509_set1_notBefore
  561. # define X509_set_notAfter X509_set1_notAfter
  562. #endif
  563. /*
  564. * This one is only used so that a binary form can output, as in
  565. * i2d_X509_PUBKEY(X509_get_X509_PUBKEY(x), &buf)
  566. */
  567. X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x);
  568. const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x);
  569. void X509_get0_uids(const X509 *x, const ASN1_BIT_STRING **piuid,
  570. const ASN1_BIT_STRING **psuid);
  571. const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x);
  572. EVP_PKEY *X509_get0_pubkey(const X509 *x);
  573. EVP_PKEY *X509_get_pubkey(X509 *x);
  574. ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x);
  575. #define X509_REQ_VERSION_1 0
  576. long X509_REQ_get_version(const X509_REQ *req);
  577. int X509_REQ_set_version(X509_REQ *x, long version);
  578. X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
  579. int X509_REQ_set_subject_name(X509_REQ *req, const X509_NAME *name);
  580. void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig,
  581. const X509_ALGOR **palg);
  582. void X509_REQ_set0_signature(X509_REQ *req, ASN1_BIT_STRING *psig);
  583. int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg);
  584. int X509_REQ_get_signature_nid(const X509_REQ *req);
  585. int i2d_re_X509_REQ_tbs(X509_REQ *req, unsigned char **pp);
  586. int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
  587. EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
  588. EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req);
  589. X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req);
  590. int X509_REQ_extension_nid(int nid);
  591. int *X509_REQ_get_extension_nids(void);
  592. void X509_REQ_set_extension_nids(int *nids);
  593. STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
  594. int X509_REQ_add_extensions_nid(X509_REQ *req,
  595. const STACK_OF(X509_EXTENSION) *exts, int nid);
  596. int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *ext);
  597. int X509_REQ_get_attr_count(const X509_REQ *req);
  598. int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos);
  599. int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, const ASN1_OBJECT *obj,
  600. int lastpos);
  601. X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
  602. X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
  603. int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
  604. int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
  605. const ASN1_OBJECT *obj, int type,
  606. const unsigned char *bytes, int len);
  607. int X509_REQ_add1_attr_by_NID(X509_REQ *req,
  608. int nid, int type,
  609. const unsigned char *bytes, int len);
  610. int X509_REQ_add1_attr_by_txt(X509_REQ *req,
  611. const char *attrname, int type,
  612. const unsigned char *bytes, int len);
  613. #define X509_CRL_VERSION_1 0
  614. #define X509_CRL_VERSION_2 1
  615. int X509_CRL_set_version(X509_CRL *x, long version);
  616. int X509_CRL_set_issuer_name(X509_CRL *x, const X509_NAME *name);
  617. int X509_CRL_set1_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
  618. int X509_CRL_set1_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
  619. int X509_CRL_sort(X509_CRL *crl);
  620. int X509_CRL_up_ref(X509_CRL *crl);
  621. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  622. # define X509_CRL_set_lastUpdate X509_CRL_set1_lastUpdate
  623. # define X509_CRL_set_nextUpdate X509_CRL_set1_nextUpdate
  624. #endif
  625. long X509_CRL_get_version(const X509_CRL *crl);
  626. const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl);
  627. const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
  628. #ifndef OPENSSL_NO_DEPRECATED_1_1_0
  629. OSSL_DEPRECATEDIN_1_1_0 ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl);
  630. OSSL_DEPRECATEDIN_1_1_0 ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
  631. #endif
  632. X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl);
  633. const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl);
  634. STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl);
  635. void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
  636. const X509_ALGOR **palg);
  637. int X509_CRL_get_signature_nid(const X509_CRL *crl);
  638. int i2d_re_X509_CRL_tbs(X509_CRL *req, unsigned char **pp);
  639. const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x);
  640. int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
  641. const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *x);
  642. int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm);
  643. const STACK_OF(X509_EXTENSION) *
  644. X509_REVOKED_get0_extensions(const X509_REVOKED *r);
  645. X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
  646. EVP_PKEY *skey, const EVP_MD *md, unsigned int flags);
  647. int X509_REQ_check_private_key(X509_REQ *x509, EVP_PKEY *pkey);
  648. int X509_check_private_key(const X509 *x509, const EVP_PKEY *pkey);
  649. int X509_chain_check_suiteb(int *perror_depth,
  650. X509 *x, STACK_OF(X509) *chain,
  651. unsigned long flags);
  652. int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk, unsigned long flags);
  653. void OSSL_STACK_OF_X509_free(STACK_OF(X509) *certs);
  654. STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
  655. int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
  656. unsigned long X509_issuer_and_serial_hash(X509 *a);
  657. int X509_issuer_name_cmp(const X509 *a, const X509 *b);
  658. unsigned long X509_issuer_name_hash(X509 *a);
  659. int X509_subject_name_cmp(const X509 *a, const X509 *b);
  660. unsigned long X509_subject_name_hash(X509 *x);
  661. # ifndef OPENSSL_NO_MD5
  662. unsigned long X509_issuer_name_hash_old(X509 *a);
  663. unsigned long X509_subject_name_hash_old(X509 *x);
  664. # endif
  665. # define X509_ADD_FLAG_DEFAULT 0
  666. # define X509_ADD_FLAG_UP_REF 0x1
  667. # define X509_ADD_FLAG_PREPEND 0x2
  668. # define X509_ADD_FLAG_NO_DUP 0x4
  669. # define X509_ADD_FLAG_NO_SS 0x8
  670. int X509_add_cert(STACK_OF(X509) *sk, X509 *cert, int flags);
  671. int X509_add_certs(STACK_OF(X509) *sk, STACK_OF(X509) *certs, int flags);
  672. int X509_cmp(const X509 *a, const X509 *b);
  673. int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
  674. #ifndef OPENSSL_NO_DEPRECATED_3_0
  675. # define X509_NAME_hash(x) X509_NAME_hash_ex(x, NULL, NULL, NULL)
  676. OSSL_DEPRECATEDIN_3_0 int X509_certificate_type(const X509 *x,
  677. const EVP_PKEY *pubkey);
  678. #endif
  679. unsigned long X509_NAME_hash_ex(const X509_NAME *x, OSSL_LIB_CTX *libctx,
  680. const char *propq, int *ok);
  681. unsigned long X509_NAME_hash_old(const X509_NAME *x);
  682. int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
  683. int X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
  684. int X509_aux_print(BIO *out, X509 *x, int indent);
  685. # ifndef OPENSSL_NO_STDIO
  686. int X509_print_ex_fp(FILE *bp, X509 *x, unsigned long nmflag,
  687. unsigned long cflag);
  688. int X509_print_fp(FILE *bp, X509 *x);
  689. int X509_CRL_print_fp(FILE *bp, X509_CRL *x);
  690. int X509_REQ_print_fp(FILE *bp, X509_REQ *req);
  691. int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
  692. unsigned long flags);
  693. # endif
  694. int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase);
  695. int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
  696. unsigned long flags);
  697. int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflag,
  698. unsigned long cflag);
  699. int X509_print(BIO *bp, X509 *x);
  700. int X509_ocspid_print(BIO *bp, X509 *x);
  701. int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag);
  702. int X509_CRL_print(BIO *bp, X509_CRL *x);
  703. int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag,
  704. unsigned long cflag);
  705. int X509_REQ_print(BIO *bp, X509_REQ *req);
  706. int X509_NAME_entry_count(const X509_NAME *name);
  707. int X509_NAME_get_text_by_NID(const X509_NAME *name, int nid,
  708. char *buf, int len);
  709. int X509_NAME_get_text_by_OBJ(const X509_NAME *name, const ASN1_OBJECT *obj,
  710. char *buf, int len);
  711. /*
  712. * NOTE: you should be passing -1, not 0 as lastpos. The functions that use
  713. * lastpos, search after that position on.
  714. */
  715. int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid, int lastpos);
  716. int X509_NAME_get_index_by_OBJ(const X509_NAME *name, const ASN1_OBJECT *obj,
  717. int lastpos);
  718. X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name, int loc);
  719. X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
  720. int X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne,
  721. int loc, int set);
  722. int X509_NAME_add_entry_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, int type,
  723. const unsigned char *bytes, int len, int loc,
  724. int set);
  725. int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
  726. const unsigned char *bytes, int len, int loc,
  727. int set);
  728. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne,
  729. const char *field, int type,
  730. const unsigned char *bytes,
  731. int len);
  732. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
  733. int type,
  734. const unsigned char *bytes,
  735. int len);
  736. int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type,
  737. const unsigned char *bytes, int len, int loc,
  738. int set);
  739. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
  740. const ASN1_OBJECT *obj, int type,
  741. const unsigned char *bytes,
  742. int len);
  743. int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, const ASN1_OBJECT *obj);
  744. int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
  745. const unsigned char *bytes, int len);
  746. ASN1_OBJECT *X509_NAME_ENTRY_get_object(const X509_NAME_ENTRY *ne);
  747. ASN1_STRING * X509_NAME_ENTRY_get_data(const X509_NAME_ENTRY *ne);
  748. int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne);
  749. int X509_NAME_get0_der(const X509_NAME *nm, const unsigned char **pder,
  750. size_t *pderlen);
  751. int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
  752. int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
  753. int nid, int lastpos);
  754. int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
  755. const ASN1_OBJECT *obj, int lastpos);
  756. int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
  757. int crit, int lastpos);
  758. X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
  759. X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
  760. STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
  761. X509_EXTENSION *ex, int loc);
  762. int X509_get_ext_count(const X509 *x);
  763. int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
  764. int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos);
  765. int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
  766. X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
  767. X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
  768. int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
  769. void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx);
  770. int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
  771. unsigned long flags);
  772. int X509_CRL_get_ext_count(const X509_CRL *x);
  773. int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
  774. int X509_CRL_get_ext_by_OBJ(const X509_CRL *x, const ASN1_OBJECT *obj,
  775. int lastpos);
  776. int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
  777. X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
  778. X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
  779. int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
  780. void *X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx);
  781. int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
  782. unsigned long flags);
  783. int X509_REVOKED_get_ext_count(const X509_REVOKED *x);
  784. int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos);
  785. int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, const ASN1_OBJECT *obj,
  786. int lastpos);
  787. int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, int crit,
  788. int lastpos);
  789. X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
  790. X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
  791. int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
  792. void *X509_REVOKED_get_ext_d2i(const X509_REVOKED *x, int nid, int *crit,
  793. int *idx);
  794. int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
  795. unsigned long flags);
  796. X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
  797. int nid, int crit,
  798. ASN1_OCTET_STRING *data);
  799. X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
  800. const ASN1_OBJECT *obj, int crit,
  801. ASN1_OCTET_STRING *data);
  802. int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
  803. int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
  804. int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
  805. ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
  806. ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
  807. int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
  808. int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
  809. int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
  810. int lastpos);
  811. int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk,
  812. const ASN1_OBJECT *obj, int lastpos);
  813. X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc);
  814. X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc);
  815. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
  816. X509_ATTRIBUTE *attr);
  817. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE)
  818. **x, const ASN1_OBJECT *obj,
  819. int type,
  820. const unsigned char *bytes,
  821. int len);
  822. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE)
  823. **x, int nid, int type,
  824. const unsigned char *bytes,
  825. int len);
  826. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE)
  827. **x, const char *attrname,
  828. int type,
  829. const unsigned char *bytes,
  830. int len);
  831. void *X509at_get0_data_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *x,
  832. const ASN1_OBJECT *obj, int lastpos, int type);
  833. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
  834. int atrtype, const void *data,
  835. int len);
  836. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
  837. const ASN1_OBJECT *obj,
  838. int atrtype, const void *data,
  839. int len);
  840. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
  841. const char *atrname, int type,
  842. const unsigned char *bytes,
  843. int len);
  844. int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj);
  845. int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
  846. const void *data, int len);
  847. void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, int atrtype,
  848. void *data);
  849. int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
  850. ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
  851. ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx);
  852. int EVP_PKEY_get_attr_count(const EVP_PKEY *key);
  853. int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos);
  854. int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj,
  855. int lastpos);
  856. X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc);
  857. X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc);
  858. int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr);
  859. int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key,
  860. const ASN1_OBJECT *obj, int type,
  861. const unsigned char *bytes, int len);
  862. int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key,
  863. int nid, int type,
  864. const unsigned char *bytes, int len);
  865. int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
  866. const char *attrname, int type,
  867. const unsigned char *bytes, int len);
  868. /* lookup a cert from a X509 STACK */
  869. X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk, const X509_NAME *name,
  870. const ASN1_INTEGER *serial);
  871. X509 *X509_find_by_subject(STACK_OF(X509) *sk, const X509_NAME *name);
  872. DECLARE_ASN1_FUNCTIONS(PBEPARAM)
  873. DECLARE_ASN1_FUNCTIONS(PBE2PARAM)
  874. DECLARE_ASN1_FUNCTIONS(PBKDF2PARAM)
  875. #ifndef OPENSSL_NO_SCRYPT
  876. DECLARE_ASN1_FUNCTIONS(SCRYPT_PARAMS)
  877. #endif
  878. int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
  879. const unsigned char *salt, int saltlen);
  880. int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
  881. const unsigned char *salt, int saltlen,
  882. OSSL_LIB_CTX *libctx);
  883. X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
  884. const unsigned char *salt, int saltlen);
  885. X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
  886. const unsigned char *salt, int saltlen,
  887. OSSL_LIB_CTX *libctx);
  888. X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
  889. unsigned char *salt, int saltlen);
  890. X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
  891. unsigned char *salt, int saltlen,
  892. unsigned char *aiv, int prf_nid);
  893. X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
  894. unsigned char *salt, int saltlen,
  895. unsigned char *aiv, int prf_nid,
  896. OSSL_LIB_CTX *libctx);
  897. #ifndef OPENSSL_NO_SCRYPT
  898. X509_ALGOR *PKCS5_pbe2_set_scrypt(const EVP_CIPHER *cipher,
  899. const unsigned char *salt, int saltlen,
  900. unsigned char *aiv, uint64_t N, uint64_t r,
  901. uint64_t p);
  902. #endif
  903. X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen,
  904. int prf_nid, int keylen);
  905. X509_ALGOR *PKCS5_pbkdf2_set_ex(int iter, unsigned char *salt, int saltlen,
  906. int prf_nid, int keylen,
  907. OSSL_LIB_CTX *libctx);
  908. /* PKCS#8 utilities */
  909. DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
  910. EVP_PKEY *EVP_PKCS82PKEY(const PKCS8_PRIV_KEY_INFO *p8);
  911. EVP_PKEY *EVP_PKCS82PKEY_ex(const PKCS8_PRIV_KEY_INFO *p8, OSSL_LIB_CTX *libctx,
  912. const char *propq);
  913. PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey);
  914. int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
  915. int version, int ptype, void *pval,
  916. unsigned char *penc, int penclen);
  917. int PKCS8_pkey_get0(const ASN1_OBJECT **ppkalg,
  918. const unsigned char **pk, int *ppklen,
  919. const X509_ALGOR **pa, const PKCS8_PRIV_KEY_INFO *p8);
  920. const STACK_OF(X509_ATTRIBUTE) *
  921. PKCS8_pkey_get0_attrs(const PKCS8_PRIV_KEY_INFO *p8);
  922. int PKCS8_pkey_add1_attr(PKCS8_PRIV_KEY_INFO *p8, X509_ATTRIBUTE *attr);
  923. int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type,
  924. const unsigned char *bytes, int len);
  925. int PKCS8_pkey_add1_attr_by_OBJ(PKCS8_PRIV_KEY_INFO *p8, const ASN1_OBJECT *obj,
  926. int type, const unsigned char *bytes, int len);
  927. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
  928. int ptype, void *pval,
  929. unsigned char *penc, int penclen);
  930. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  931. const unsigned char **pk, int *ppklen,
  932. X509_ALGOR **pa, const X509_PUBKEY *pub);
  933. int X509_PUBKEY_eq(const X509_PUBKEY *a, const X509_PUBKEY *b);
  934. # ifdef __cplusplus
  935. }
  936. # endif
  937. #endif