x509.h.in 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091
  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_uri(void);
  420. const char *X509_get_default_cert_dir(void);
  421. const char *X509_get_default_cert_file(void);
  422. const char *X509_get_default_cert_uri_env(void);
  423. const char *X509_get_default_cert_path_env(void);
  424. const char *X509_get_default_cert_dir_env(void);
  425. const char *X509_get_default_cert_file_env(void);
  426. const char *X509_get_default_private_dir(void);
  427. X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
  428. X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey);
  429. DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
  430. DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
  431. DECLARE_ASN1_FUNCTIONS(X509_VAL)
  432. DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
  433. X509_PUBKEY *X509_PUBKEY_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  434. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
  435. EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key);
  436. EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key);
  437. int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain);
  438. long X509_get_pathlen(X509 *x);
  439. DECLARE_ASN1_ENCODE_FUNCTIONS_only(EVP_PKEY, PUBKEY)
  440. EVP_PKEY *d2i_PUBKEY_ex(EVP_PKEY **a, const unsigned char **pp, long length,
  441. OSSL_LIB_CTX *libctx, const char *propq);
  442. # ifndef OPENSSL_NO_DEPRECATED_3_0
  443. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0,RSA, RSA_PUBKEY)
  444. # endif
  445. # ifndef OPENSSL_NO_DEPRECATED_3_0
  446. # ifndef OPENSSL_NO_DSA
  447. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0,DSA, DSA_PUBKEY)
  448. # endif
  449. # endif
  450. # ifndef OPENSSL_NO_DEPRECATED_3_0
  451. # ifndef OPENSSL_NO_EC
  452. DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(OSSL_DEPRECATEDIN_3_0, EC_KEY, EC_PUBKEY)
  453. # endif
  454. # endif
  455. DECLARE_ASN1_FUNCTIONS(X509_SIG)
  456. void X509_SIG_get0(const X509_SIG *sig, const X509_ALGOR **palg,
  457. const ASN1_OCTET_STRING **pdigest);
  458. void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **palg,
  459. ASN1_OCTET_STRING **pdigest);
  460. DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
  461. DECLARE_ASN1_FUNCTIONS(X509_REQ)
  462. X509_REQ *X509_REQ_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  463. DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
  464. X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value);
  465. DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
  466. DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS)
  467. DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY)
  468. DECLARE_ASN1_FUNCTIONS(X509_NAME)
  469. int X509_NAME_set(X509_NAME **xn, const X509_NAME *name);
  470. DECLARE_ASN1_FUNCTIONS(X509_CINF)
  471. DECLARE_ASN1_FUNCTIONS(X509)
  472. X509 *X509_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  473. DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
  474. #define X509_get_ex_new_index(l, p, newf, dupf, freef) \
  475. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509, l, p, newf, dupf, freef)
  476. int X509_set_ex_data(X509 *r, int idx, void *arg);
  477. void *X509_get_ex_data(const X509 *r, int idx);
  478. DECLARE_ASN1_ENCODE_FUNCTIONS_only(X509,X509_AUX)
  479. int i2d_re_X509_tbs(X509 *x, unsigned char **pp);
  480. int X509_SIG_INFO_get(const X509_SIG_INFO *siginf, int *mdnid, int *pknid,
  481. int *secbits, uint32_t *flags);
  482. void X509_SIG_INFO_set(X509_SIG_INFO *siginf, int mdnid, int pknid,
  483. int secbits, uint32_t flags);
  484. int X509_get_signature_info(X509 *x, int *mdnid, int *pknid, int *secbits,
  485. uint32_t *flags);
  486. void X509_get0_signature(const ASN1_BIT_STRING **psig,
  487. const X509_ALGOR **palg, const X509 *x);
  488. int X509_get_signature_nid(const X509 *x);
  489. void X509_set0_distinguishing_id(X509 *x, ASN1_OCTET_STRING *d_id);
  490. ASN1_OCTET_STRING *X509_get0_distinguishing_id(X509 *x);
  491. void X509_REQ_set0_distinguishing_id(X509_REQ *x, ASN1_OCTET_STRING *d_id);
  492. ASN1_OCTET_STRING *X509_REQ_get0_distinguishing_id(X509_REQ *x);
  493. int X509_alias_set1(X509 *x, const unsigned char *name, int len);
  494. int X509_keyid_set1(X509 *x, const unsigned char *id, int len);
  495. unsigned char *X509_alias_get0(X509 *x, int *len);
  496. unsigned char *X509_keyid_get0(X509 *x, int *len);
  497. DECLARE_ASN1_FUNCTIONS(X509_REVOKED)
  498. DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO)
  499. DECLARE_ASN1_FUNCTIONS(X509_CRL)
  500. X509_CRL *X509_CRL_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
  501. int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
  502. int X509_CRL_get0_by_serial(X509_CRL *crl,
  503. X509_REVOKED **ret, const ASN1_INTEGER *serial);
  504. int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x);
  505. X509_PKEY *X509_PKEY_new(void);
  506. void X509_PKEY_free(X509_PKEY *a);
  507. DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
  508. DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)
  509. DECLARE_ASN1_FUNCTIONS(NETSCAPE_CERT_SEQUENCE)
  510. X509_INFO *X509_INFO_new(void);
  511. void X509_INFO_free(X509_INFO *a);
  512. char *X509_NAME_oneline(const X509_NAME *a, char *buf, int size);
  513. #ifndef OPENSSL_NO_DEPRECATED_3_0
  514. OSSL_DEPRECATEDIN_3_0
  515. int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1,
  516. ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey);
  517. OSSL_DEPRECATEDIN_3_0
  518. int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
  519. unsigned char *md, unsigned int *len);
  520. OSSL_DEPRECATEDIN_3_0
  521. int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2,
  522. ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey,
  523. const EVP_MD *type);
  524. #endif
  525. int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *data,
  526. unsigned char *md, unsigned int *len);
  527. int ASN1_item_verify(const ASN1_ITEM *it, const X509_ALGOR *alg,
  528. const ASN1_BIT_STRING *signature, const void *data,
  529. EVP_PKEY *pkey);
  530. int ASN1_item_verify_ctx(const ASN1_ITEM *it, const X509_ALGOR *alg,
  531. const ASN1_BIT_STRING *signature, const void *data,
  532. EVP_MD_CTX *ctx);
  533. int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2,
  534. ASN1_BIT_STRING *signature, const void *data,
  535. EVP_PKEY *pkey, const EVP_MD *md);
  536. int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
  537. X509_ALGOR *algor2, ASN1_BIT_STRING *signature,
  538. const void *data, EVP_MD_CTX *ctx);
  539. #define X509_VERSION_1 0
  540. #define X509_VERSION_2 1
  541. #define X509_VERSION_3 2
  542. long X509_get_version(const X509 *x);
  543. int X509_set_version(X509 *x, long version);
  544. int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
  545. ASN1_INTEGER *X509_get_serialNumber(X509 *x);
  546. const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x);
  547. int X509_set_issuer_name(X509 *x, const X509_NAME *name);
  548. X509_NAME *X509_get_issuer_name(const X509 *a);
  549. int X509_set_subject_name(X509 *x, const X509_NAME *name);
  550. X509_NAME *X509_get_subject_name(const X509 *a);
  551. const ASN1_TIME * X509_get0_notBefore(const X509 *x);
  552. ASN1_TIME *X509_getm_notBefore(const X509 *x);
  553. int X509_set1_notBefore(X509 *x, const ASN1_TIME *tm);
  554. const ASN1_TIME *X509_get0_notAfter(const X509 *x);
  555. ASN1_TIME *X509_getm_notAfter(const X509 *x);
  556. int X509_set1_notAfter(X509 *x, const ASN1_TIME *tm);
  557. int X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
  558. int X509_up_ref(X509 *x);
  559. int X509_get_signature_type(const X509 *x);
  560. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  561. # define X509_get_notBefore X509_getm_notBefore
  562. # define X509_get_notAfter X509_getm_notAfter
  563. # define X509_set_notBefore X509_set1_notBefore
  564. # define X509_set_notAfter X509_set1_notAfter
  565. #endif
  566. /*
  567. * This one is only used so that a binary form can output, as in
  568. * i2d_X509_PUBKEY(X509_get_X509_PUBKEY(x), &buf)
  569. */
  570. X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x);
  571. const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x);
  572. void X509_get0_uids(const X509 *x, const ASN1_BIT_STRING **piuid,
  573. const ASN1_BIT_STRING **psuid);
  574. const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x);
  575. EVP_PKEY *X509_get0_pubkey(const X509 *x);
  576. EVP_PKEY *X509_get_pubkey(X509 *x);
  577. ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x);
  578. #define X509_REQ_VERSION_1 0
  579. long X509_REQ_get_version(const X509_REQ *req);
  580. int X509_REQ_set_version(X509_REQ *x, long version);
  581. X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
  582. int X509_REQ_set_subject_name(X509_REQ *req, const X509_NAME *name);
  583. void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig,
  584. const X509_ALGOR **palg);
  585. void X509_REQ_set0_signature(X509_REQ *req, ASN1_BIT_STRING *psig);
  586. int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg);
  587. int X509_REQ_get_signature_nid(const X509_REQ *req);
  588. int i2d_re_X509_REQ_tbs(X509_REQ *req, unsigned char **pp);
  589. int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
  590. EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
  591. EVP_PKEY *X509_REQ_get0_pubkey(const X509_REQ *req);
  592. X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req);
  593. int X509_REQ_extension_nid(int nid);
  594. int *X509_REQ_get_extension_nids(void);
  595. void X509_REQ_set_extension_nids(int *nids);
  596. STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
  597. int X509_REQ_add_extensions_nid(X509_REQ *req,
  598. const STACK_OF(X509_EXTENSION) *exts, int nid);
  599. int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *ext);
  600. int X509_REQ_get_attr_count(const X509_REQ *req);
  601. int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos);
  602. int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, const ASN1_OBJECT *obj,
  603. int lastpos);
  604. X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
  605. X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
  606. int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
  607. int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
  608. const ASN1_OBJECT *obj, int type,
  609. const unsigned char *bytes, int len);
  610. int X509_REQ_add1_attr_by_NID(X509_REQ *req,
  611. int nid, int type,
  612. const unsigned char *bytes, int len);
  613. int X509_REQ_add1_attr_by_txt(X509_REQ *req,
  614. const char *attrname, int type,
  615. const unsigned char *bytes, int len);
  616. #define X509_CRL_VERSION_1 0
  617. #define X509_CRL_VERSION_2 1
  618. int X509_CRL_set_version(X509_CRL *x, long version);
  619. int X509_CRL_set_issuer_name(X509_CRL *x, const X509_NAME *name);
  620. int X509_CRL_set1_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
  621. int X509_CRL_set1_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
  622. int X509_CRL_sort(X509_CRL *crl);
  623. int X509_CRL_up_ref(X509_CRL *crl);
  624. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  625. # define X509_CRL_set_lastUpdate X509_CRL_set1_lastUpdate
  626. # define X509_CRL_set_nextUpdate X509_CRL_set1_nextUpdate
  627. #endif
  628. long X509_CRL_get_version(const X509_CRL *crl);
  629. const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl);
  630. const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
  631. #ifndef OPENSSL_NO_DEPRECATED_1_1_0
  632. OSSL_DEPRECATEDIN_1_1_0 ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl);
  633. OSSL_DEPRECATEDIN_1_1_0 ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
  634. #endif
  635. X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl);
  636. const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl);
  637. STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl);
  638. void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
  639. const X509_ALGOR **palg);
  640. int X509_CRL_get_signature_nid(const X509_CRL *crl);
  641. int i2d_re_X509_CRL_tbs(X509_CRL *req, unsigned char **pp);
  642. const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x);
  643. int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
  644. const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *x);
  645. int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm);
  646. const STACK_OF(X509_EXTENSION) *
  647. X509_REVOKED_get0_extensions(const X509_REVOKED *r);
  648. X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
  649. EVP_PKEY *skey, const EVP_MD *md, unsigned int flags);
  650. int X509_REQ_check_private_key(const X509_REQ *req, EVP_PKEY *pkey);
  651. int X509_check_private_key(const X509 *cert, const EVP_PKEY *pkey);
  652. int X509_chain_check_suiteb(int *perror_depth,
  653. X509 *x, STACK_OF(X509) *chain,
  654. unsigned long flags);
  655. int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk, unsigned long flags);
  656. void OSSL_STACK_OF_X509_free(STACK_OF(X509) *certs);
  657. STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
  658. int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
  659. unsigned long X509_issuer_and_serial_hash(X509 *a);
  660. int X509_issuer_name_cmp(const X509 *a, const X509 *b);
  661. unsigned long X509_issuer_name_hash(X509 *a);
  662. int X509_subject_name_cmp(const X509 *a, const X509 *b);
  663. unsigned long X509_subject_name_hash(X509 *x);
  664. # ifndef OPENSSL_NO_MD5
  665. unsigned long X509_issuer_name_hash_old(X509 *a);
  666. unsigned long X509_subject_name_hash_old(X509 *x);
  667. # endif
  668. # define X509_ADD_FLAG_DEFAULT 0
  669. # define X509_ADD_FLAG_UP_REF 0x1
  670. # define X509_ADD_FLAG_PREPEND 0x2
  671. # define X509_ADD_FLAG_NO_DUP 0x4
  672. # define X509_ADD_FLAG_NO_SS 0x8
  673. int X509_add_cert(STACK_OF(X509) *sk, X509 *cert, int flags);
  674. int X509_add_certs(STACK_OF(X509) *sk, STACK_OF(X509) *certs, int flags);
  675. int X509_cmp(const X509 *a, const X509 *b);
  676. int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
  677. #ifndef OPENSSL_NO_DEPRECATED_3_0
  678. # define X509_NAME_hash(x) X509_NAME_hash_ex(x, NULL, NULL, NULL)
  679. OSSL_DEPRECATEDIN_3_0 int X509_certificate_type(const X509 *x,
  680. const EVP_PKEY *pubkey);
  681. #endif
  682. unsigned long X509_NAME_hash_ex(const X509_NAME *x, OSSL_LIB_CTX *libctx,
  683. const char *propq, int *ok);
  684. unsigned long X509_NAME_hash_old(const X509_NAME *x);
  685. int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
  686. int X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
  687. int X509_aux_print(BIO *out, X509 *x, int indent);
  688. # ifndef OPENSSL_NO_STDIO
  689. int X509_print_ex_fp(FILE *bp, X509 *x, unsigned long nmflag,
  690. unsigned long cflag);
  691. int X509_print_fp(FILE *bp, X509 *x);
  692. int X509_CRL_print_fp(FILE *bp, X509_CRL *x);
  693. int X509_REQ_print_fp(FILE *bp, X509_REQ *req);
  694. int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
  695. unsigned long flags);
  696. # endif
  697. int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase);
  698. int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
  699. unsigned long flags);
  700. int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflag,
  701. unsigned long cflag);
  702. int X509_print(BIO *bp, X509 *x);
  703. int X509_ocspid_print(BIO *bp, X509 *x);
  704. int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag);
  705. int X509_CRL_print(BIO *bp, X509_CRL *x);
  706. int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag,
  707. unsigned long cflag);
  708. int X509_REQ_print(BIO *bp, X509_REQ *req);
  709. int X509_NAME_entry_count(const X509_NAME *name);
  710. int X509_NAME_get_text_by_NID(const X509_NAME *name, int nid,
  711. char *buf, int len);
  712. int X509_NAME_get_text_by_OBJ(const X509_NAME *name, const ASN1_OBJECT *obj,
  713. char *buf, int len);
  714. /*
  715. * NOTE: you should be passing -1, not 0 as lastpos. The functions that use
  716. * lastpos, search after that position on.
  717. */
  718. int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid, int lastpos);
  719. int X509_NAME_get_index_by_OBJ(const X509_NAME *name, const ASN1_OBJECT *obj,
  720. int lastpos);
  721. X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name, int loc);
  722. X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
  723. int X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne,
  724. int loc, int set);
  725. int X509_NAME_add_entry_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj, int type,
  726. const unsigned char *bytes, int len, int loc,
  727. int set);
  728. int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
  729. const unsigned char *bytes, int len, int loc,
  730. int set);
  731. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne,
  732. const char *field, int type,
  733. const unsigned char *bytes,
  734. int len);
  735. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
  736. int type,
  737. const unsigned char *bytes,
  738. int len);
  739. int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type,
  740. const unsigned char *bytes, int len, int loc,
  741. int set);
  742. X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
  743. const ASN1_OBJECT *obj, int type,
  744. const unsigned char *bytes,
  745. int len);
  746. int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, const ASN1_OBJECT *obj);
  747. int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
  748. const unsigned char *bytes, int len);
  749. ASN1_OBJECT *X509_NAME_ENTRY_get_object(const X509_NAME_ENTRY *ne);
  750. ASN1_STRING * X509_NAME_ENTRY_get_data(const X509_NAME_ENTRY *ne);
  751. int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne);
  752. int X509_NAME_get0_der(const X509_NAME *nm, const unsigned char **pder,
  753. size_t *pderlen);
  754. int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
  755. int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
  756. int nid, int lastpos);
  757. int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
  758. const ASN1_OBJECT *obj, int lastpos);
  759. int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
  760. int crit, int lastpos);
  761. X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
  762. X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
  763. STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
  764. X509_EXTENSION *ex, int loc);
  765. int X509_get_ext_count(const X509 *x);
  766. int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
  767. int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos);
  768. int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
  769. X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
  770. X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
  771. int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
  772. void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx);
  773. int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
  774. unsigned long flags);
  775. int X509_CRL_get_ext_count(const X509_CRL *x);
  776. int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
  777. int X509_CRL_get_ext_by_OBJ(const X509_CRL *x, const ASN1_OBJECT *obj,
  778. int lastpos);
  779. int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
  780. X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
  781. X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
  782. int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
  783. void *X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx);
  784. int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
  785. unsigned long flags);
  786. int X509_REVOKED_get_ext_count(const X509_REVOKED *x);
  787. int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos);
  788. int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, const ASN1_OBJECT *obj,
  789. int lastpos);
  790. int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, int crit,
  791. int lastpos);
  792. X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
  793. X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
  794. int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
  795. void *X509_REVOKED_get_ext_d2i(const X509_REVOKED *x, int nid, int *crit,
  796. int *idx);
  797. int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
  798. unsigned long flags);
  799. X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
  800. int nid, int crit,
  801. ASN1_OCTET_STRING *data);
  802. X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
  803. const ASN1_OBJECT *obj, int crit,
  804. ASN1_OCTET_STRING *data);
  805. int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
  806. int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
  807. int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
  808. ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
  809. ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
  810. int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
  811. int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
  812. int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
  813. int lastpos);
  814. int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk,
  815. const ASN1_OBJECT *obj, int lastpos);
  816. X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc);
  817. X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc);
  818. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
  819. X509_ATTRIBUTE *attr);
  820. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE)
  821. **x, const ASN1_OBJECT *obj,
  822. int type,
  823. const unsigned char *bytes,
  824. int len);
  825. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE)
  826. **x, int nid, int type,
  827. const unsigned char *bytes,
  828. int len);
  829. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE)
  830. **x, const char *attrname,
  831. int type,
  832. const unsigned char *bytes,
  833. int len);
  834. void *X509at_get0_data_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *x,
  835. const ASN1_OBJECT *obj, int lastpos, int type);
  836. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
  837. int atrtype, const void *data,
  838. int len);
  839. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
  840. const ASN1_OBJECT *obj,
  841. int atrtype, const void *data,
  842. int len);
  843. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
  844. const char *atrname, int type,
  845. const unsigned char *bytes,
  846. int len);
  847. int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj);
  848. int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
  849. const void *data, int len);
  850. void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, int atrtype,
  851. void *data);
  852. int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
  853. ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
  854. ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx);
  855. int EVP_PKEY_get_attr_count(const EVP_PKEY *key);
  856. int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos);
  857. int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj,
  858. int lastpos);
  859. X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc);
  860. X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc);
  861. int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr);
  862. int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key,
  863. const ASN1_OBJECT *obj, int type,
  864. const unsigned char *bytes, int len);
  865. int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key,
  866. int nid, int type,
  867. const unsigned char *bytes, int len);
  868. int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
  869. const char *attrname, int type,
  870. const unsigned char *bytes, int len);
  871. /* lookup a cert from a X509 STACK */
  872. X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk, const X509_NAME *name,
  873. const ASN1_INTEGER *serial);
  874. X509 *X509_find_by_subject(STACK_OF(X509) *sk, const X509_NAME *name);
  875. DECLARE_ASN1_FUNCTIONS(PBEPARAM)
  876. DECLARE_ASN1_FUNCTIONS(PBE2PARAM)
  877. DECLARE_ASN1_FUNCTIONS(PBKDF2PARAM)
  878. #ifndef OPENSSL_NO_SCRYPT
  879. DECLARE_ASN1_FUNCTIONS(SCRYPT_PARAMS)
  880. #endif
  881. int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
  882. const unsigned char *salt, int saltlen);
  883. int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
  884. const unsigned char *salt, int saltlen,
  885. OSSL_LIB_CTX *libctx);
  886. X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
  887. const unsigned char *salt, int saltlen);
  888. X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
  889. const unsigned char *salt, int saltlen,
  890. OSSL_LIB_CTX *libctx);
  891. X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
  892. unsigned char *salt, int saltlen);
  893. X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
  894. unsigned char *salt, int saltlen,
  895. unsigned char *aiv, int prf_nid);
  896. X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
  897. unsigned char *salt, int saltlen,
  898. unsigned char *aiv, int prf_nid,
  899. OSSL_LIB_CTX *libctx);
  900. #ifndef OPENSSL_NO_SCRYPT
  901. X509_ALGOR *PKCS5_pbe2_set_scrypt(const EVP_CIPHER *cipher,
  902. const unsigned char *salt, int saltlen,
  903. unsigned char *aiv, uint64_t N, uint64_t r,
  904. uint64_t p);
  905. #endif
  906. X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen,
  907. int prf_nid, int keylen);
  908. X509_ALGOR *PKCS5_pbkdf2_set_ex(int iter, unsigned char *salt, int saltlen,
  909. int prf_nid, int keylen,
  910. OSSL_LIB_CTX *libctx);
  911. /* PKCS#8 utilities */
  912. DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
  913. EVP_PKEY *EVP_PKCS82PKEY(const PKCS8_PRIV_KEY_INFO *p8);
  914. EVP_PKEY *EVP_PKCS82PKEY_ex(const PKCS8_PRIV_KEY_INFO *p8, OSSL_LIB_CTX *libctx,
  915. const char *propq);
  916. PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey);
  917. int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
  918. int version, int ptype, void *pval,
  919. unsigned char *penc, int penclen);
  920. int PKCS8_pkey_get0(const ASN1_OBJECT **ppkalg,
  921. const unsigned char **pk, int *ppklen,
  922. const X509_ALGOR **pa, const PKCS8_PRIV_KEY_INFO *p8);
  923. const STACK_OF(X509_ATTRIBUTE) *
  924. PKCS8_pkey_get0_attrs(const PKCS8_PRIV_KEY_INFO *p8);
  925. int PKCS8_pkey_add1_attr(PKCS8_PRIV_KEY_INFO *p8, X509_ATTRIBUTE *attr);
  926. int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type,
  927. const unsigned char *bytes, int len);
  928. int PKCS8_pkey_add1_attr_by_OBJ(PKCS8_PRIV_KEY_INFO *p8, const ASN1_OBJECT *obj,
  929. int type, const unsigned char *bytes, int len);
  930. void X509_PUBKEY_set0_public_key(X509_PUBKEY *pub,
  931. unsigned char *penc, int penclen);
  932. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
  933. int ptype, void *pval,
  934. unsigned char *penc, int penclen);
  935. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  936. const unsigned char **pk, int *ppklen,
  937. X509_ALGOR **pa, const X509_PUBKEY *pub);
  938. int X509_PUBKEY_eq(const X509_PUBKEY *a, const X509_PUBKEY *b);
  939. # ifdef __cplusplus
  940. }
  941. # endif
  942. #endif