pem.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. /* crypto/pem/pem.h */
  2. /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. #ifndef HEADER_PEM_H
  59. # define HEADER_PEM_H
  60. # include <openssl/e_os2.h>
  61. # ifndef OPENSSL_NO_BIO
  62. # include <openssl/bio.h>
  63. # endif
  64. # ifndef OPENSSL_NO_STACK
  65. # include <openssl/stack.h>
  66. # endif
  67. # include <openssl/evp.h>
  68. # include <openssl/x509.h>
  69. # include <openssl/pem2.h>
  70. #ifdef __cplusplus
  71. extern "C" {
  72. #endif
  73. # define PEM_BUFSIZE 1024
  74. # define PEM_OBJ_UNDEF 0
  75. # define PEM_OBJ_X509 1
  76. # define PEM_OBJ_X509_REQ 2
  77. # define PEM_OBJ_CRL 3
  78. # define PEM_OBJ_SSL_SESSION 4
  79. # define PEM_OBJ_PRIV_KEY 10
  80. # define PEM_OBJ_PRIV_RSA 11
  81. # define PEM_OBJ_PRIV_DSA 12
  82. # define PEM_OBJ_PRIV_DH 13
  83. # define PEM_OBJ_PUB_RSA 14
  84. # define PEM_OBJ_PUB_DSA 15
  85. # define PEM_OBJ_PUB_DH 16
  86. # define PEM_OBJ_DHPARAMS 17
  87. # define PEM_OBJ_DSAPARAMS 18
  88. # define PEM_OBJ_PRIV_RSA_PUBLIC 19
  89. # define PEM_OBJ_PRIV_ECDSA 20
  90. # define PEM_OBJ_PUB_ECDSA 21
  91. # define PEM_OBJ_ECPARAMETERS 22
  92. # define PEM_ERROR 30
  93. # define PEM_DEK_DES_CBC 40
  94. # define PEM_DEK_IDEA_CBC 45
  95. # define PEM_DEK_DES_EDE 50
  96. # define PEM_DEK_DES_ECB 60
  97. # define PEM_DEK_RSA 70
  98. # define PEM_DEK_RSA_MD2 80
  99. # define PEM_DEK_RSA_MD5 90
  100. # define PEM_MD_MD2 NID_md2
  101. # define PEM_MD_MD5 NID_md5
  102. # define PEM_MD_SHA NID_sha
  103. # define PEM_MD_MD2_RSA NID_md2WithRSAEncryption
  104. # define PEM_MD_MD5_RSA NID_md5WithRSAEncryption
  105. # define PEM_MD_SHA_RSA NID_sha1WithRSAEncryption
  106. # define PEM_STRING_X509_OLD "X509 CERTIFICATE"
  107. # define PEM_STRING_X509 "CERTIFICATE"
  108. # define PEM_STRING_X509_PAIR "CERTIFICATE PAIR"
  109. # define PEM_STRING_X509_TRUSTED "TRUSTED CERTIFICATE"
  110. # define PEM_STRING_X509_REQ_OLD "NEW CERTIFICATE REQUEST"
  111. # define PEM_STRING_X509_REQ "CERTIFICATE REQUEST"
  112. # define PEM_STRING_X509_CRL "X509 CRL"
  113. # define PEM_STRING_EVP_PKEY "ANY PRIVATE KEY"
  114. # define PEM_STRING_PUBLIC "PUBLIC KEY"
  115. # define PEM_STRING_RSA "RSA PRIVATE KEY"
  116. # define PEM_STRING_RSA_PUBLIC "RSA PUBLIC KEY"
  117. # define PEM_STRING_DSA "DSA PRIVATE KEY"
  118. # define PEM_STRING_DSA_PUBLIC "DSA PUBLIC KEY"
  119. # define PEM_STRING_PKCS7 "PKCS7"
  120. # define PEM_STRING_PKCS7_SIGNED "PKCS #7 SIGNED DATA"
  121. # define PEM_STRING_PKCS8 "ENCRYPTED PRIVATE KEY"
  122. # define PEM_STRING_PKCS8INF "PRIVATE KEY"
  123. # define PEM_STRING_DHPARAMS "DH PARAMETERS"
  124. # define PEM_STRING_SSL_SESSION "SSL SESSION PARAMETERS"
  125. # define PEM_STRING_DSAPARAMS "DSA PARAMETERS"
  126. # define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"
  127. # define PEM_STRING_ECPARAMETERS "EC PARAMETERS"
  128. # define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY"
  129. # define PEM_STRING_CMS "CMS"
  130. /*
  131. * Note that this structure is initialised by PEM_SealInit and cleaned up
  132. * by PEM_SealFinal (at least for now)
  133. */
  134. typedef struct PEM_Encode_Seal_st {
  135. EVP_ENCODE_CTX encode;
  136. EVP_MD_CTX md;
  137. EVP_CIPHER_CTX cipher;
  138. } PEM_ENCODE_SEAL_CTX;
  139. /* enc_type is one off */
  140. # define PEM_TYPE_ENCRYPTED 10
  141. # define PEM_TYPE_MIC_ONLY 20
  142. # define PEM_TYPE_MIC_CLEAR 30
  143. # define PEM_TYPE_CLEAR 40
  144. typedef struct pem_recip_st {
  145. char *name;
  146. X509_NAME *dn;
  147. int cipher;
  148. int key_enc;
  149. /* char iv[8]; unused and wrong size */
  150. } PEM_USER;
  151. typedef struct pem_ctx_st {
  152. int type; /* what type of object */
  153. struct {
  154. int version;
  155. int mode;
  156. } proc_type;
  157. char *domain;
  158. struct {
  159. int cipher;
  160. /*-
  161. unused, and wrong size
  162. unsigned char iv[8]; */
  163. } DEK_info;
  164. PEM_USER *originator;
  165. int num_recipient;
  166. PEM_USER **recipient;
  167. # ifndef OPENSSL_NO_STACK
  168. STACK *x509_chain; /* certificate chain */
  169. # else
  170. char *x509_chain; /* certificate chain */
  171. # endif
  172. EVP_MD *md; /* signature type */
  173. int md_enc; /* is the md encrypted or not? */
  174. int md_len; /* length of md_data */
  175. char *md_data; /* message digest, could be pkey encrypted */
  176. EVP_CIPHER *dec; /* date encryption cipher */
  177. int key_len; /* key length */
  178. unsigned char *key; /* key */
  179. /*-
  180. unused, and wrong size
  181. unsigned char iv[8]; */
  182. int data_enc; /* is the data encrypted */
  183. int data_len;
  184. unsigned char *data;
  185. } PEM_CTX;
  186. /*
  187. * These macros make the PEM_read/PEM_write functions easier to maintain and
  188. * write. Now they are all implemented with either: IMPLEMENT_PEM_rw(...) or
  189. * IMPLEMENT_PEM_rw_cb(...)
  190. */
  191. # ifdef OPENSSL_NO_FP_API
  192. # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
  193. # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
  194. # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
  195. # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
  196. # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
  197. # else
  198. # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
  199. type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
  200. { \
  201. return (type*)PEM_ASN1_read(CHECKED_D2I_OF(type, d2i_##asn1), \
  202. str, fp, \
  203. CHECKED_PPTR_OF(type, x), \
  204. cb, u); \
  205. }
  206. # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
  207. int PEM_write_##name(FILE *fp, type *x) \
  208. { \
  209. return PEM_ASN1_write(CHECKED_I2D_OF(type, i2d_##asn1), \
  210. str, fp, \
  211. CHECKED_PTR_OF(type, x), \
  212. NULL, NULL, 0, NULL, NULL); \
  213. }
  214. # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
  215. int PEM_write_##name(FILE *fp, const type *x) \
  216. { \
  217. return PEM_ASN1_write(CHECKED_I2D_OF(const type, i2d_##asn1), \
  218. str, fp, \
  219. CHECKED_PTR_OF(const type, x), \
  220. NULL, NULL, 0, NULL, NULL); \
  221. }
  222. # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
  223. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  224. unsigned char *kstr, int klen, pem_password_cb *cb, \
  225. void *u) \
  226. { \
  227. return PEM_ASN1_write(CHECKED_I2D_OF(type, i2d_##asn1), \
  228. str, fp, \
  229. CHECKED_PTR_OF(type, x), \
  230. enc, kstr, klen, cb, u); \
  231. }
  232. # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
  233. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  234. unsigned char *kstr, int klen, pem_password_cb *cb, \
  235. void *u) \
  236. { \
  237. return PEM_ASN1_write(CHECKED_I2D_OF(const type, i2d_##asn1), \
  238. str, fp, \
  239. CHECKED_PTR_OF(const type, x), \
  240. enc, kstr, klen, cb, u); \
  241. }
  242. # endif
  243. # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
  244. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
  245. { \
  246. return (type*)PEM_ASN1_read_bio(CHECKED_D2I_OF(type, d2i_##asn1), \
  247. str, bp, \
  248. CHECKED_PPTR_OF(type, x), \
  249. cb, u); \
  250. }
  251. # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
  252. int PEM_write_bio_##name(BIO *bp, type *x) \
  253. { \
  254. return PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d_##asn1), \
  255. str, bp, \
  256. CHECKED_PTR_OF(type, x), \
  257. NULL, NULL, 0, NULL, NULL); \
  258. }
  259. # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
  260. int PEM_write_bio_##name(BIO *bp, const type *x) \
  261. { \
  262. return PEM_ASN1_write_bio(CHECKED_I2D_OF(const type, i2d_##asn1), \
  263. str, bp, \
  264. CHECKED_PTR_OF(const type, x), \
  265. NULL, NULL, 0, NULL, NULL); \
  266. }
  267. # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
  268. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  269. unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
  270. { \
  271. return PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d_##asn1), \
  272. str, bp, \
  273. CHECKED_PTR_OF(type, x), \
  274. enc, kstr, klen, cb, u); \
  275. }
  276. # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
  277. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  278. unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
  279. { \
  280. return PEM_ASN1_write_bio(CHECKED_I2D_OF(const type, i2d_##asn1), \
  281. str, bp, \
  282. CHECKED_PTR_OF(const type, x), \
  283. enc, kstr, klen, cb, u); \
  284. }
  285. # define IMPLEMENT_PEM_write(name, type, str, asn1) \
  286. IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
  287. IMPLEMENT_PEM_write_fp(name, type, str, asn1)
  288. # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \
  289. IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
  290. IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
  291. # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
  292. IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
  293. IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
  294. # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \
  295. IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
  296. IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
  297. # define IMPLEMENT_PEM_read(name, type, str, asn1) \
  298. IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
  299. IMPLEMENT_PEM_read_fp(name, type, str, asn1)
  300. # define IMPLEMENT_PEM_rw(name, type, str, asn1) \
  301. IMPLEMENT_PEM_read(name, type, str, asn1) \
  302. IMPLEMENT_PEM_write(name, type, str, asn1)
  303. # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \
  304. IMPLEMENT_PEM_read(name, type, str, asn1) \
  305. IMPLEMENT_PEM_write_const(name, type, str, asn1)
  306. # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
  307. IMPLEMENT_PEM_read(name, type, str, asn1) \
  308. IMPLEMENT_PEM_write_cb(name, type, str, asn1)
  309. /* These are the same except they are for the declarations */
  310. # if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_NO_FP_API)
  311. # define DECLARE_PEM_read_fp(name, type) /**/
  312. # define DECLARE_PEM_write_fp(name, type) /**/
  313. # define DECLARE_PEM_write_fp_const(name, type) /**/
  314. # define DECLARE_PEM_write_cb_fp(name, type) /**/
  315. # else
  316. # define DECLARE_PEM_read_fp(name, type) \
  317. type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);
  318. # define DECLARE_PEM_write_fp(name, type) \
  319. int PEM_write_##name(FILE *fp, type *x);
  320. # define DECLARE_PEM_write_fp_const(name, type) \
  321. int PEM_write_##name(FILE *fp, const type *x);
  322. # define DECLARE_PEM_write_cb_fp(name, type) \
  323. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  324. unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  325. # endif
  326. # ifndef OPENSSL_NO_BIO
  327. # define DECLARE_PEM_read_bio(name, type) \
  328. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
  329. # define DECLARE_PEM_write_bio(name, type) \
  330. int PEM_write_bio_##name(BIO *bp, type *x);
  331. # define DECLARE_PEM_write_bio_const(name, type) \
  332. int PEM_write_bio_##name(BIO *bp, const type *x);
  333. # define DECLARE_PEM_write_cb_bio(name, type) \
  334. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  335. unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  336. # else
  337. # define DECLARE_PEM_read_bio(name, type) /**/
  338. # define DECLARE_PEM_write_bio(name, type) /**/
  339. # define DECLARE_PEM_write_bio_const(name, type) /**/
  340. # define DECLARE_PEM_write_cb_bio(name, type) /**/
  341. # endif
  342. # define DECLARE_PEM_write(name, type) \
  343. DECLARE_PEM_write_bio(name, type) \
  344. DECLARE_PEM_write_fp(name, type)
  345. # define DECLARE_PEM_write_const(name, type) \
  346. DECLARE_PEM_write_bio_const(name, type) \
  347. DECLARE_PEM_write_fp_const(name, type)
  348. # define DECLARE_PEM_write_cb(name, type) \
  349. DECLARE_PEM_write_cb_bio(name, type) \
  350. DECLARE_PEM_write_cb_fp(name, type)
  351. # define DECLARE_PEM_read(name, type) \
  352. DECLARE_PEM_read_bio(name, type) \
  353. DECLARE_PEM_read_fp(name, type)
  354. # define DECLARE_PEM_rw(name, type) \
  355. DECLARE_PEM_read(name, type) \
  356. DECLARE_PEM_write(name, type)
  357. # define DECLARE_PEM_rw_const(name, type) \
  358. DECLARE_PEM_read(name, type) \
  359. DECLARE_PEM_write_const(name, type)
  360. # define DECLARE_PEM_rw_cb(name, type) \
  361. DECLARE_PEM_read(name, type) \
  362. DECLARE_PEM_write_cb(name, type)
  363. # ifdef SSLEAY_MACROS
  364. # define PEM_write_SSL_SESSION(fp,x) \
  365. PEM_ASN1_write((int (*)())i2d_SSL_SESSION, \
  366. PEM_STRING_SSL_SESSION,fp, (char *)x, NULL,NULL,0,NULL,NULL)
  367. # define PEM_write_X509(fp,x) \
  368. PEM_ASN1_write((int (*)())i2d_X509,PEM_STRING_X509,fp, \
  369. (char *)x, NULL,NULL,0,NULL,NULL)
  370. # define PEM_write_X509_REQ(fp,x) PEM_ASN1_write( \
  371. (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,fp,(char *)x, \
  372. NULL,NULL,0,NULL,NULL)
  373. # define PEM_write_X509_CRL(fp,x) \
  374. PEM_ASN1_write((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL, \
  375. fp,(char *)x, NULL,NULL,0,NULL,NULL)
  376. # define PEM_write_RSAPrivateKey(fp,x,enc,kstr,klen,cb,u) \
  377. PEM_ASN1_write((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,fp,\
  378. (char *)x,enc,kstr,klen,cb,u)
  379. # define PEM_write_RSAPublicKey(fp,x) \
  380. PEM_ASN1_write((int (*)())i2d_RSAPublicKey,\
  381. PEM_STRING_RSA_PUBLIC,fp,(char *)x,NULL,NULL,0,NULL,NULL)
  382. # define PEM_write_DSAPrivateKey(fp,x,enc,kstr,klen,cb,u) \
  383. PEM_ASN1_write((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,fp,\
  384. (char *)x,enc,kstr,klen,cb,u)
  385. # define PEM_write_PrivateKey(bp,x,enc,kstr,klen,cb,u) \
  386. PEM_ASN1_write((int (*)())i2d_PrivateKey,\
  387. (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),\
  388. bp,(char *)x,enc,kstr,klen,cb,u)
  389. # define PEM_write_PKCS7(fp,x) \
  390. PEM_ASN1_write((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,fp, \
  391. (char *)x, NULL,NULL,0,NULL,NULL)
  392. # define PEM_write_DHparams(fp,x) \
  393. PEM_ASN1_write((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,fp,\
  394. (char *)x,NULL,NULL,0,NULL,NULL)
  395. # define PEM_write_NETSCAPE_CERT_SEQUENCE(fp,x) \
  396. PEM_ASN1_write((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, \
  397. PEM_STRING_X509,fp, \
  398. (char *)x, NULL,NULL,0,NULL,NULL)
  399. # define PEM_read_SSL_SESSION(fp,x,cb,u) (SSL_SESSION *)PEM_ASN1_read( \
  400. (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,fp,(char **)x,cb,u)
  401. # define PEM_read_X509(fp,x,cb,u) (X509 *)PEM_ASN1_read( \
  402. (char *(*)())d2i_X509,PEM_STRING_X509,fp,(char **)x,cb,u)
  403. # define PEM_read_X509_REQ(fp,x,cb,u) (X509_REQ *)PEM_ASN1_read( \
  404. (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,fp,(char **)x,cb,u)
  405. # define PEM_read_X509_CRL(fp,x,cb,u) (X509_CRL *)PEM_ASN1_read( \
  406. (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,fp,(char **)x,cb,u)
  407. # define PEM_read_RSAPrivateKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( \
  408. (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,fp,(char **)x,cb,u)
  409. # define PEM_read_RSAPublicKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( \
  410. (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,fp,(char **)x,cb,u)
  411. # define PEM_read_DSAPrivateKey(fp,x,cb,u) (DSA *)PEM_ASN1_read( \
  412. (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,fp,(char **)x,cb,u)
  413. # define PEM_read_PrivateKey(fp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read( \
  414. (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,fp,(char **)x,cb,u)
  415. # define PEM_read_PKCS7(fp,x,cb,u) (PKCS7 *)PEM_ASN1_read( \
  416. (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,fp,(char **)x,cb,u)
  417. # define PEM_read_DHparams(fp,x,cb,u) (DH *)PEM_ASN1_read( \
  418. (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,fp,(char **)x,cb,u)
  419. # define PEM_read_NETSCAPE_CERT_SEQUENCE(fp,x,cb,u) \
  420. (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read( \
  421. (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,fp,\
  422. (char **)x,cb,u)
  423. # define PEM_write_bio_X509(bp,x) \
  424. PEM_ASN1_write_bio((int (*)())i2d_X509,PEM_STRING_X509,bp, \
  425. (char *)x, NULL,NULL,0,NULL,NULL)
  426. # define PEM_write_bio_X509_REQ(bp,x) PEM_ASN1_write_bio( \
  427. (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,bp,(char *)x, \
  428. NULL,NULL,0,NULL,NULL)
  429. # define PEM_write_bio_X509_CRL(bp,x) \
  430. PEM_ASN1_write_bio((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL,\
  431. bp,(char *)x, NULL,NULL,0,NULL,NULL)
  432. # define PEM_write_bio_RSAPrivateKey(bp,x,enc,kstr,klen,cb,u) \
  433. PEM_ASN1_write_bio((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,\
  434. bp,(char *)x,enc,kstr,klen,cb,u)
  435. # define PEM_write_bio_RSAPublicKey(bp,x) \
  436. PEM_ASN1_write_bio((int (*)())i2d_RSAPublicKey, \
  437. PEM_STRING_RSA_PUBLIC,\
  438. bp,(char *)x,NULL,NULL,0,NULL,NULL)
  439. # define PEM_write_bio_DSAPrivateKey(bp,x,enc,kstr,klen,cb,u) \
  440. PEM_ASN1_write_bio((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,\
  441. bp,(char *)x,enc,kstr,klen,cb,u)
  442. # define PEM_write_bio_PrivateKey(bp,x,enc,kstr,klen,cb,u) \
  443. PEM_ASN1_write_bio((int (*)())i2d_PrivateKey,\
  444. (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),\
  445. bp,(char *)x,enc,kstr,klen,cb,u)
  446. # define PEM_write_bio_PKCS7(bp,x) \
  447. PEM_ASN1_write_bio((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,bp, \
  448. (char *)x, NULL,NULL,0,NULL,NULL)
  449. # define PEM_write_bio_DHparams(bp,x) \
  450. PEM_ASN1_write_bio((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,\
  451. bp,(char *)x,NULL,NULL,0,NULL,NULL)
  452. # define PEM_write_bio_DSAparams(bp,x) \
  453. PEM_ASN1_write_bio((int (*)())i2d_DSAparams, \
  454. PEM_STRING_DSAPARAMS,bp,(char *)x,NULL,NULL,0,NULL,NULL)
  455. # define PEM_write_bio_NETSCAPE_CERT_SEQUENCE(bp,x) \
  456. PEM_ASN1_write_bio((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, \
  457. PEM_STRING_X509,bp, \
  458. (char *)x, NULL,NULL,0,NULL,NULL)
  459. # define PEM_read_bio_X509(bp,x,cb,u) (X509 *)PEM_ASN1_read_bio( \
  460. (char *(*)())d2i_X509,PEM_STRING_X509,bp,(char **)x,cb,u)
  461. # define PEM_read_bio_X509_REQ(bp,x,cb,u) (X509_REQ *)PEM_ASN1_read_bio( \
  462. (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,bp,(char **)x,cb,u)
  463. # define PEM_read_bio_X509_CRL(bp,x,cb,u) (X509_CRL *)PEM_ASN1_read_bio( \
  464. (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,bp,(char **)x,cb,u)
  465. # define PEM_read_bio_RSAPrivateKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( \
  466. (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,bp,(char **)x,cb,u)
  467. # define PEM_read_bio_RSAPublicKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( \
  468. (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,bp,(char **)x,cb,u)
  469. # define PEM_read_bio_DSAPrivateKey(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( \
  470. (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,bp,(char **)x,cb,u)
  471. # define PEM_read_bio_PrivateKey(bp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read_bio( \
  472. (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,bp,(char **)x,cb,u)
  473. # define PEM_read_bio_PKCS7(bp,x,cb,u) (PKCS7 *)PEM_ASN1_read_bio( \
  474. (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,bp,(char **)x,cb,u)
  475. # define PEM_read_bio_DHparams(bp,x,cb,u) (DH *)PEM_ASN1_read_bio( \
  476. (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,bp,(char **)x,cb,u)
  477. # define PEM_read_bio_DSAparams(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( \
  478. (char *(*)())d2i_DSAparams,PEM_STRING_DSAPARAMS,bp,(char **)x,cb,u)
  479. # define PEM_read_bio_NETSCAPE_CERT_SEQUENCE(bp,x,cb,u) \
  480. (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read_bio( \
  481. (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,bp,\
  482. (char **)x,cb,u)
  483. # endif
  484. # if 1
  485. /* "userdata": new with OpenSSL 0.9.4 */
  486. typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata);
  487. # else
  488. /* OpenSSL 0.9.3, 0.9.3a */
  489. typedef int pem_password_cb (char *buf, int size, int rwflag);
  490. # endif
  491. int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher);
  492. int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *len,
  493. pem_password_cb *callback, void *u);
  494. # ifndef OPENSSL_NO_BIO
  495. int PEM_read_bio(BIO *bp, char **name, char **header,
  496. unsigned char **data, long *len);
  497. int PEM_write_bio(BIO *bp, const char *name, char *hdr, unsigned char *data,
  498. long len);
  499. int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
  500. const char *name, BIO *bp, pem_password_cb *cb,
  501. void *u);
  502. void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x,
  503. pem_password_cb *cb, void *u);
  504. # define PEM_ASN1_read_bio_of(type,d2i,name,bp,x,cb,u) \
  505. ((type*)PEM_ASN1_read_bio(CHECKED_D2I_OF(type, d2i), \
  506. name, bp, \
  507. CHECKED_PPTR_OF(type, x), \
  508. cb, u))
  509. int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, char *x,
  510. const EVP_CIPHER *enc, unsigned char *kstr, int klen,
  511. pem_password_cb *cb, void *u);
  512. # define PEM_ASN1_write_bio_of(type,i2d,name,bp,x,enc,kstr,klen,cb,u) \
  513. (PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d), \
  514. name, bp, \
  515. CHECKED_PTR_OF(type, x), \
  516. enc, kstr, klen, cb, u))
  517. STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk,
  518. pem_password_cb *cb, void *u);
  519. int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc,
  520. unsigned char *kstr, int klen,
  521. pem_password_cb *cd, void *u);
  522. # endif
  523. # ifndef OPENSSL_SYS_WIN16
  524. int PEM_read(FILE *fp, char **name, char **header,
  525. unsigned char **data, long *len);
  526. int PEM_write(FILE *fp, char *name, char *hdr, unsigned char *data, long len);
  527. void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
  528. pem_password_cb *cb, void *u);
  529. int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
  530. char *x, const EVP_CIPHER *enc, unsigned char *kstr,
  531. int klen, pem_password_cb *callback, void *u);
  532. STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
  533. pem_password_cb *cb, void *u);
  534. # endif
  535. int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
  536. EVP_MD *md_type, unsigned char **ek, int *ekl,
  537. unsigned char *iv, EVP_PKEY **pubk, int npubk);
  538. void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl,
  539. unsigned char *in, int inl);
  540. int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig, int *sigl,
  541. unsigned char *out, int *outl, EVP_PKEY *priv);
  542. void PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type);
  543. void PEM_SignUpdate(EVP_MD_CTX *ctx, unsigned char *d, unsigned int cnt);
  544. int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
  545. unsigned int *siglen, EVP_PKEY *pkey);
  546. int PEM_def_callback(char *buf, int num, int w, void *key);
  547. void PEM_proc_type(char *buf, int type);
  548. void PEM_dek_info(char *buf, const char *type, int len, char *str);
  549. # ifndef SSLEAY_MACROS
  550. # include <openssl/symhacks.h>
  551. DECLARE_PEM_rw(X509, X509)
  552. DECLARE_PEM_rw(X509_AUX, X509)
  553. DECLARE_PEM_rw(X509_CERT_PAIR, X509_CERT_PAIR)
  554. DECLARE_PEM_rw(X509_REQ, X509_REQ)
  555. DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
  556. DECLARE_PEM_rw(X509_CRL, X509_CRL)
  557. DECLARE_PEM_rw(PKCS7, PKCS7)
  558. DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
  559. DECLARE_PEM_rw(PKCS8, X509_SIG)
  560. DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
  561. # ifndef OPENSSL_NO_RSA
  562. DECLARE_PEM_rw_cb(RSAPrivateKey, RSA)
  563. DECLARE_PEM_rw_const(RSAPublicKey, RSA)
  564. DECLARE_PEM_rw(RSA_PUBKEY, RSA)
  565. # endif
  566. # ifndef OPENSSL_NO_DSA
  567. DECLARE_PEM_rw_cb(DSAPrivateKey, DSA)
  568. DECLARE_PEM_rw(DSA_PUBKEY, DSA)
  569. DECLARE_PEM_rw_const(DSAparams, DSA)
  570. # endif
  571. # ifndef OPENSSL_NO_EC
  572. DECLARE_PEM_rw_const(ECPKParameters, EC_GROUP)
  573. DECLARE_PEM_rw_cb(ECPrivateKey, EC_KEY)
  574. DECLARE_PEM_rw(EC_PUBKEY, EC_KEY)
  575. # endif
  576. # ifndef OPENSSL_NO_DH
  577. DECLARE_PEM_rw_const(DHparams, DH)
  578. # endif
  579. DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY)
  580. DECLARE_PEM_rw(PUBKEY, EVP_PKEY)
  581. int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
  582. char *kstr, int klen,
  583. pem_password_cb *cb, void *u);
  584. int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
  585. char *, int, pem_password_cb *, void *);
  586. int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
  587. char *kstr, int klen,
  588. pem_password_cb *cb, void *u);
  589. int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
  590. char *kstr, int klen,
  591. pem_password_cb *cb, void *u);
  592. EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
  593. void *u);
  594. int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
  595. char *kstr, int klen,
  596. pem_password_cb *cb, void *u);
  597. int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid,
  598. char *kstr, int klen,
  599. pem_password_cb *cb, void *u);
  600. int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid,
  601. char *kstr, int klen,
  602. pem_password_cb *cb, void *u);
  603. EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
  604. void *u);
  605. int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
  606. char *kstr, int klen, pem_password_cb *cd,
  607. void *u);
  608. # endif /* SSLEAY_MACROS */
  609. /* BEGIN ERROR CODES */
  610. /*
  611. * The following lines are auto generated by the script mkerr.pl. Any changes
  612. * made after this point may be overwritten when the script is next run.
  613. */
  614. void ERR_load_PEM_strings(void);
  615. /* Error codes for the PEM functions. */
  616. /* Function codes. */
  617. # define PEM_F_D2I_PKCS8PRIVATEKEY_BIO 120
  618. # define PEM_F_D2I_PKCS8PRIVATEKEY_FP 121
  619. # define PEM_F_DO_PK8PKEY 126
  620. # define PEM_F_DO_PK8PKEY_FP 125
  621. # define PEM_F_LOAD_IV 101
  622. # define PEM_F_PEM_ASN1_READ 102
  623. # define PEM_F_PEM_ASN1_READ_BIO 103
  624. # define PEM_F_PEM_ASN1_WRITE 104
  625. # define PEM_F_PEM_ASN1_WRITE_BIO 105
  626. # define PEM_F_PEM_DEF_CALLBACK 100
  627. # define PEM_F_PEM_DO_HEADER 106
  628. # define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY 118
  629. # define PEM_F_PEM_GET_EVP_CIPHER_INFO 107
  630. # define PEM_F_PEM_PK8PKEY 119
  631. # define PEM_F_PEM_READ 108
  632. # define PEM_F_PEM_READ_BIO 109
  633. # define PEM_F_PEM_READ_BIO_PRIVATEKEY 123
  634. # define PEM_F_PEM_READ_PRIVATEKEY 124
  635. # define PEM_F_PEM_SEALFINAL 110
  636. # define PEM_F_PEM_SEALINIT 111
  637. # define PEM_F_PEM_SIGNFINAL 112
  638. # define PEM_F_PEM_WRITE 113
  639. # define PEM_F_PEM_WRITE_BIO 114
  640. # define PEM_F_PEM_X509_INFO_READ 115
  641. # define PEM_F_PEM_X509_INFO_READ_BIO 116
  642. # define PEM_F_PEM_X509_INFO_WRITE_BIO 117
  643. /* Reason codes. */
  644. # define PEM_R_BAD_BASE64_DECODE 100
  645. # define PEM_R_BAD_DECRYPT 101
  646. # define PEM_R_BAD_END_LINE 102
  647. # define PEM_R_BAD_IV_CHARS 103
  648. # define PEM_R_BAD_PASSWORD_READ 104
  649. # define PEM_R_ERROR_CONVERTING_PRIVATE_KEY 115
  650. # define PEM_R_NOT_DEK_INFO 105
  651. # define PEM_R_NOT_ENCRYPTED 106
  652. # define PEM_R_NOT_PROC_TYPE 107
  653. # define PEM_R_NO_START_LINE 108
  654. # define PEM_R_PROBLEMS_GETTING_PASSWORD 109
  655. # define PEM_R_PUBLIC_KEY_NO_RSA 110
  656. # define PEM_R_READ_KEY 111
  657. # define PEM_R_SHORT_HEADER 112
  658. # define PEM_R_UNSUPPORTED_CIPHER 113
  659. # define PEM_R_UNSUPPORTED_ENCRYPTION 114
  660. #ifdef __cplusplus
  661. }
  662. #endif
  663. #endif