2
0

pem.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  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_DHXPARAMS "X9.42 DH PARAMETERS"
  125. # define PEM_STRING_SSL_SESSION "SSL SESSION PARAMETERS"
  126. # define PEM_STRING_DSAPARAMS "DSA PARAMETERS"
  127. # define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"
  128. # define PEM_STRING_ECPARAMETERS "EC PARAMETERS"
  129. # define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY"
  130. # define PEM_STRING_PARAMETERS "PARAMETERS"
  131. # define PEM_STRING_CMS "CMS"
  132. /*
  133. * Note that this structure is initialised by PEM_SealInit and cleaned up
  134. * by PEM_SealFinal (at least for now)
  135. */
  136. typedef struct PEM_Encode_Seal_st {
  137. EVP_ENCODE_CTX encode;
  138. EVP_MD_CTX md;
  139. EVP_CIPHER_CTX cipher;
  140. } PEM_ENCODE_SEAL_CTX;
  141. /* enc_type is one off */
  142. # define PEM_TYPE_ENCRYPTED 10
  143. # define PEM_TYPE_MIC_ONLY 20
  144. # define PEM_TYPE_MIC_CLEAR 30
  145. # define PEM_TYPE_CLEAR 40
  146. typedef struct pem_recip_st {
  147. char *name;
  148. X509_NAME *dn;
  149. int cipher;
  150. int key_enc;
  151. /* char iv[8]; unused and wrong size */
  152. } PEM_USER;
  153. typedef struct pem_ctx_st {
  154. int type; /* what type of object */
  155. struct {
  156. int version;
  157. int mode;
  158. } proc_type;
  159. char *domain;
  160. struct {
  161. int cipher;
  162. /*-
  163. unused, and wrong size
  164. unsigned char iv[8]; */
  165. } DEK_info;
  166. PEM_USER *originator;
  167. int num_recipient;
  168. PEM_USER **recipient;
  169. /*-
  170. XXX(ben): don#t think this is used!
  171. STACK *x509_chain; / * certificate chain */
  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 PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
  202. }
  203. # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
  204. int PEM_write_##name(FILE *fp, type *x) \
  205. { \
  206. return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
  207. }
  208. # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
  209. int PEM_write_##name(FILE *fp, const type *x) \
  210. { \
  211. return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,(void *)x,NULL,NULL,0,NULL,NULL); \
  212. }
  213. # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
  214. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  215. unsigned char *kstr, int klen, pem_password_cb *cb, \
  216. void *u) \
  217. { \
  218. return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
  219. }
  220. # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
  221. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  222. unsigned char *kstr, int klen, pem_password_cb *cb, \
  223. void *u) \
  224. { \
  225. return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
  226. }
  227. # endif
  228. # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
  229. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
  230. { \
  231. return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
  232. }
  233. # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
  234. int PEM_write_bio_##name(BIO *bp, type *x) \
  235. { \
  236. return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \
  237. }
  238. # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
  239. int PEM_write_bio_##name(BIO *bp, const type *x) \
  240. { \
  241. return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \
  242. }
  243. # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
  244. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  245. unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
  246. { \
  247. return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \
  248. }
  249. # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
  250. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  251. unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
  252. { \
  253. return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u); \
  254. }
  255. # define IMPLEMENT_PEM_write(name, type, str, asn1) \
  256. IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
  257. IMPLEMENT_PEM_write_fp(name, type, str, asn1)
  258. # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \
  259. IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
  260. IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
  261. # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
  262. IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
  263. IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
  264. # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \
  265. IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
  266. IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
  267. # define IMPLEMENT_PEM_read(name, type, str, asn1) \
  268. IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
  269. IMPLEMENT_PEM_read_fp(name, type, str, asn1)
  270. # define IMPLEMENT_PEM_rw(name, type, str, asn1) \
  271. IMPLEMENT_PEM_read(name, type, str, asn1) \
  272. IMPLEMENT_PEM_write(name, type, str, asn1)
  273. # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \
  274. IMPLEMENT_PEM_read(name, type, str, asn1) \
  275. IMPLEMENT_PEM_write_const(name, type, str, asn1)
  276. # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
  277. IMPLEMENT_PEM_read(name, type, str, asn1) \
  278. IMPLEMENT_PEM_write_cb(name, type, str, asn1)
  279. /* These are the same except they are for the declarations */
  280. # if defined(OPENSSL_NO_FP_API)
  281. # define DECLARE_PEM_read_fp(name, type) /**/
  282. # define DECLARE_PEM_write_fp(name, type) /**/
  283. # define DECLARE_PEM_write_cb_fp(name, type) /**/
  284. # else
  285. # define DECLARE_PEM_read_fp(name, type) \
  286. type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);
  287. # define DECLARE_PEM_write_fp(name, type) \
  288. int PEM_write_##name(FILE *fp, type *x);
  289. # define DECLARE_PEM_write_fp_const(name, type) \
  290. int PEM_write_##name(FILE *fp, const type *x);
  291. # define DECLARE_PEM_write_cb_fp(name, type) \
  292. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
  293. unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  294. # endif
  295. # ifndef OPENSSL_NO_BIO
  296. # define DECLARE_PEM_read_bio(name, type) \
  297. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
  298. # define DECLARE_PEM_write_bio(name, type) \
  299. int PEM_write_bio_##name(BIO *bp, type *x);
  300. # define DECLARE_PEM_write_bio_const(name, type) \
  301. int PEM_write_bio_##name(BIO *bp, const type *x);
  302. # define DECLARE_PEM_write_cb_bio(name, type) \
  303. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
  304. unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  305. # else
  306. # define DECLARE_PEM_read_bio(name, type) /**/
  307. # define DECLARE_PEM_write_bio(name, type) /**/
  308. # define DECLARE_PEM_write_bio_const(name, type) /**/
  309. # define DECLARE_PEM_write_cb_bio(name, type) /**/
  310. # endif
  311. # define DECLARE_PEM_write(name, type) \
  312. DECLARE_PEM_write_bio(name, type) \
  313. DECLARE_PEM_write_fp(name, type)
  314. # define DECLARE_PEM_write_const(name, type) \
  315. DECLARE_PEM_write_bio_const(name, type) \
  316. DECLARE_PEM_write_fp_const(name, type)
  317. # define DECLARE_PEM_write_cb(name, type) \
  318. DECLARE_PEM_write_cb_bio(name, type) \
  319. DECLARE_PEM_write_cb_fp(name, type)
  320. # define DECLARE_PEM_read(name, type) \
  321. DECLARE_PEM_read_bio(name, type) \
  322. DECLARE_PEM_read_fp(name, type)
  323. # define DECLARE_PEM_rw(name, type) \
  324. DECLARE_PEM_read(name, type) \
  325. DECLARE_PEM_write(name, type)
  326. # define DECLARE_PEM_rw_const(name, type) \
  327. DECLARE_PEM_read(name, type) \
  328. DECLARE_PEM_write_const(name, type)
  329. # define DECLARE_PEM_rw_cb(name, type) \
  330. DECLARE_PEM_read(name, type) \
  331. DECLARE_PEM_write_cb(name, type)
  332. # if 1
  333. /* "userdata": new with OpenSSL 0.9.4 */
  334. typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata);
  335. # else
  336. /* OpenSSL 0.9.3, 0.9.3a */
  337. typedef int pem_password_cb (char *buf, int size, int rwflag);
  338. # endif
  339. int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher);
  340. int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *len,
  341. pem_password_cb *callback, void *u);
  342. # ifndef OPENSSL_NO_BIO
  343. int PEM_read_bio(BIO *bp, char **name, char **header,
  344. unsigned char **data, long *len);
  345. int PEM_write_bio(BIO *bp, const char *name, const char *hdr,
  346. const unsigned char *data, long len);
  347. int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
  348. const char *name, BIO *bp, pem_password_cb *cb,
  349. void *u);
  350. void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x,
  351. pem_password_cb *cb, void *u);
  352. int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x,
  353. const EVP_CIPHER *enc, unsigned char *kstr, int klen,
  354. pem_password_cb *cb, void *u);
  355. STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk,
  356. pem_password_cb *cb, void *u);
  357. int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc,
  358. unsigned char *kstr, int klen,
  359. pem_password_cb *cd, void *u);
  360. # endif
  361. int PEM_read(FILE *fp, char **name, char **header,
  362. unsigned char **data, long *len);
  363. int PEM_write(FILE *fp, const char *name, const char *hdr,
  364. const unsigned char *data, long len);
  365. void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
  366. pem_password_cb *cb, void *u);
  367. int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
  368. void *x, const EVP_CIPHER *enc, unsigned char *kstr,
  369. int klen, pem_password_cb *callback, void *u);
  370. STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
  371. pem_password_cb *cb, void *u);
  372. int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
  373. EVP_MD *md_type, unsigned char **ek, int *ekl,
  374. unsigned char *iv, EVP_PKEY **pubk, int npubk);
  375. void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl,
  376. unsigned char *in, int inl);
  377. int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig, int *sigl,
  378. unsigned char *out, int *outl, EVP_PKEY *priv);
  379. void PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type);
  380. void PEM_SignUpdate(EVP_MD_CTX *ctx, unsigned char *d, unsigned int cnt);
  381. int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
  382. unsigned int *siglen, EVP_PKEY *pkey);
  383. int PEM_def_callback(char *buf, int num, int w, void *key);
  384. void PEM_proc_type(char *buf, int type);
  385. void PEM_dek_info(char *buf, const char *type, int len, char *str);
  386. # include <openssl/symhacks.h>
  387. DECLARE_PEM_rw(X509, X509)
  388. DECLARE_PEM_rw(X509_AUX, X509)
  389. DECLARE_PEM_rw(X509_CERT_PAIR, X509_CERT_PAIR)
  390. DECLARE_PEM_rw(X509_REQ, X509_REQ)
  391. DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
  392. DECLARE_PEM_rw(X509_CRL, X509_CRL)
  393. DECLARE_PEM_rw(PKCS7, PKCS7)
  394. DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
  395. DECLARE_PEM_rw(PKCS8, X509_SIG)
  396. DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
  397. # ifndef OPENSSL_NO_RSA
  398. DECLARE_PEM_rw_cb(RSAPrivateKey, RSA)
  399. DECLARE_PEM_rw_const(RSAPublicKey, RSA)
  400. DECLARE_PEM_rw(RSA_PUBKEY, RSA)
  401. # endif
  402. # ifndef OPENSSL_NO_DSA
  403. DECLARE_PEM_rw_cb(DSAPrivateKey, DSA)
  404. DECLARE_PEM_rw(DSA_PUBKEY, DSA)
  405. DECLARE_PEM_rw_const(DSAparams, DSA)
  406. # endif
  407. # ifndef OPENSSL_NO_EC
  408. DECLARE_PEM_rw_const(ECPKParameters, EC_GROUP)
  409. DECLARE_PEM_rw_cb(ECPrivateKey, EC_KEY)
  410. DECLARE_PEM_rw(EC_PUBKEY, EC_KEY)
  411. # endif
  412. # ifndef OPENSSL_NO_DH
  413. DECLARE_PEM_rw_const(DHparams, DH)
  414. DECLARE_PEM_write_const(DHxparams, DH)
  415. # endif
  416. DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY)
  417. DECLARE_PEM_rw(PUBKEY, EVP_PKEY)
  418. int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
  419. char *kstr, int klen,
  420. pem_password_cb *cb, void *u);
  421. int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
  422. char *, int, pem_password_cb *, void *);
  423. int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
  424. char *kstr, int klen,
  425. pem_password_cb *cb, void *u);
  426. int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
  427. char *kstr, int klen,
  428. pem_password_cb *cb, void *u);
  429. EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
  430. void *u);
  431. int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
  432. char *kstr, int klen,
  433. pem_password_cb *cb, void *u);
  434. int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid,
  435. char *kstr, int klen,
  436. pem_password_cb *cb, void *u);
  437. int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid,
  438. char *kstr, int klen,
  439. pem_password_cb *cb, void *u);
  440. EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
  441. void *u);
  442. int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
  443. char *kstr, int klen, pem_password_cb *cd,
  444. void *u);
  445. EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x);
  446. int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x);
  447. EVP_PKEY *b2i_PrivateKey(const unsigned char **in, long length);
  448. EVP_PKEY *b2i_PublicKey(const unsigned char **in, long length);
  449. EVP_PKEY *b2i_PrivateKey_bio(BIO *in);
  450. EVP_PKEY *b2i_PublicKey_bio(BIO *in);
  451. int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk);
  452. int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk);
  453. # ifndef OPENSSL_NO_RC4
  454. EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
  455. int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
  456. pem_password_cb *cb, void *u);
  457. # endif
  458. /* BEGIN ERROR CODES */
  459. /*
  460. * The following lines are auto generated by the script mkerr.pl. Any changes
  461. * made after this point may be overwritten when the script is next run.
  462. */
  463. void ERR_load_PEM_strings(void);
  464. /* Error codes for the PEM functions. */
  465. /* Function codes. */
  466. # define PEM_F_B2I_DSS 127
  467. # define PEM_F_B2I_PVK_BIO 128
  468. # define PEM_F_B2I_RSA 129
  469. # define PEM_F_CHECK_BITLEN_DSA 130
  470. # define PEM_F_CHECK_BITLEN_RSA 131
  471. # define PEM_F_D2I_PKCS8PRIVATEKEY_BIO 120
  472. # define PEM_F_D2I_PKCS8PRIVATEKEY_FP 121
  473. # define PEM_F_DO_B2I 132
  474. # define PEM_F_DO_B2I_BIO 133
  475. # define PEM_F_DO_BLOB_HEADER 134
  476. # define PEM_F_DO_PK8PKEY 126
  477. # define PEM_F_DO_PK8PKEY_FP 125
  478. # define PEM_F_DO_PVK_BODY 135
  479. # define PEM_F_DO_PVK_HEADER 136
  480. # define PEM_F_I2B_PVK 137
  481. # define PEM_F_I2B_PVK_BIO 138
  482. # define PEM_F_LOAD_IV 101
  483. # define PEM_F_PEM_ASN1_READ 102
  484. # define PEM_F_PEM_ASN1_READ_BIO 103
  485. # define PEM_F_PEM_ASN1_WRITE 104
  486. # define PEM_F_PEM_ASN1_WRITE_BIO 105
  487. # define PEM_F_PEM_DEF_CALLBACK 100
  488. # define PEM_F_PEM_DO_HEADER 106
  489. # define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY 118
  490. # define PEM_F_PEM_GET_EVP_CIPHER_INFO 107
  491. # define PEM_F_PEM_PK8PKEY 119
  492. # define PEM_F_PEM_READ 108
  493. # define PEM_F_PEM_READ_BIO 109
  494. # define PEM_F_PEM_READ_BIO_DHPARAMS 141
  495. # define PEM_F_PEM_READ_BIO_PARAMETERS 140
  496. # define PEM_F_PEM_READ_BIO_PRIVATEKEY 123
  497. # define PEM_F_PEM_READ_DHPARAMS 142
  498. # define PEM_F_PEM_READ_PRIVATEKEY 124
  499. # define PEM_F_PEM_SEALFINAL 110
  500. # define PEM_F_PEM_SEALINIT 111
  501. # define PEM_F_PEM_SIGNFINAL 112
  502. # define PEM_F_PEM_WRITE 113
  503. # define PEM_F_PEM_WRITE_BIO 114
  504. # define PEM_F_PEM_WRITE_PRIVATEKEY 139
  505. # define PEM_F_PEM_X509_INFO_READ 115
  506. # define PEM_F_PEM_X509_INFO_READ_BIO 116
  507. # define PEM_F_PEM_X509_INFO_WRITE_BIO 117
  508. /* Reason codes. */
  509. # define PEM_R_BAD_BASE64_DECODE 100
  510. # define PEM_R_BAD_DECRYPT 101
  511. # define PEM_R_BAD_END_LINE 102
  512. # define PEM_R_BAD_IV_CHARS 103
  513. # define PEM_R_BAD_MAGIC_NUMBER 116
  514. # define PEM_R_BAD_PASSWORD_READ 104
  515. # define PEM_R_BAD_VERSION_NUMBER 117
  516. # define PEM_R_BIO_WRITE_FAILURE 118
  517. # define PEM_R_CIPHER_IS_NULL 127
  518. # define PEM_R_ERROR_CONVERTING_PRIVATE_KEY 115
  519. # define PEM_R_EXPECTING_PRIVATE_KEY_BLOB 119
  520. # define PEM_R_EXPECTING_PUBLIC_KEY_BLOB 120
  521. # define PEM_R_HEADER_TOO_LONG 128
  522. # define PEM_R_INCONSISTENT_HEADER 121
  523. # define PEM_R_KEYBLOB_HEADER_PARSE_ERROR 122
  524. # define PEM_R_KEYBLOB_TOO_SHORT 123
  525. # define PEM_R_NOT_DEK_INFO 105
  526. # define PEM_R_NOT_ENCRYPTED 106
  527. # define PEM_R_NOT_PROC_TYPE 107
  528. # define PEM_R_NO_START_LINE 108
  529. # define PEM_R_PROBLEMS_GETTING_PASSWORD 109
  530. # define PEM_R_PUBLIC_KEY_NO_RSA 110
  531. # define PEM_R_PVK_DATA_TOO_SHORT 124
  532. # define PEM_R_PVK_TOO_SHORT 125
  533. # define PEM_R_READ_KEY 111
  534. # define PEM_R_SHORT_HEADER 112
  535. # define PEM_R_UNSUPPORTED_CIPHER 113
  536. # define PEM_R_UNSUPPORTED_ENCRYPTION 114
  537. # define PEM_R_UNSUPPORTED_KEY_COMPONENTS 126
  538. # ifdef __cplusplus
  539. }
  540. # endif
  541. #endif