pem.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:28k
源码类别:

其他游戏

开发平台:

Visual C++

  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_PKCS8 "ENCRYPTED PRIVATE KEY"
  121. #define PEM_STRING_PKCS8INF "PRIVATE KEY"
  122. #define PEM_STRING_DHPARAMS "DH PARAMETERS"
  123. #define PEM_STRING_SSL_SESSION "SSL SESSION PARAMETERS"
  124. #define PEM_STRING_DSAPARAMS "DSA PARAMETERS"
  125. #define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"
  126. #define PEM_STRING_ECPARAMETERS "EC PARAMETERS"
  127. #define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY"
  128.   /* Note that this structure is initialised by PEM_SealInit and cleaned up
  129.      by PEM_SealFinal (at least for now) */
  130. typedef struct PEM_Encode_Seal_st
  131. {
  132. EVP_ENCODE_CTX encode;
  133. EVP_MD_CTX md;
  134. EVP_CIPHER_CTX cipher;
  135. } PEM_ENCODE_SEAL_CTX;
  136. /* enc_type is one off */
  137. #define PEM_TYPE_ENCRYPTED      10
  138. #define PEM_TYPE_MIC_ONLY       20
  139. #define PEM_TYPE_MIC_CLEAR      30
  140. #define PEM_TYPE_CLEAR 40
  141. typedef struct pem_recip_st
  142. {
  143. char *name;
  144. X509_NAME *dn;
  145. int cipher;
  146. int key_enc;
  147. /* char iv[8]; unused and wrong size */
  148. } PEM_USER;
  149. typedef struct pem_ctx_st
  150. {
  151. int type; /* what type of object */
  152. struct {
  153. int version;
  154. int mode;
  155. } proc_type;
  156. char *domain;
  157. struct {
  158. int cipher;
  159. /* unused, and wrong size
  160.    unsigned char iv[8]; */
  161. } DEK_info;
  162. PEM_USER *originator;
  163. int num_recipient;
  164. PEM_USER **recipient;
  165. #ifndef OPENSSL_NO_STACK
  166. STACK *x509_chain; /* certificate chain */
  167. #else
  168. char *x509_chain; /* certificate chain */
  169. #endif
  170. EVP_MD *md; /* signature type */
  171. int md_enc; /* is the md encrypted or not? */
  172. int md_len; /* length of md_data */
  173. char *md_data; /* message digest, could be pkey encrypted */
  174. EVP_CIPHER *dec; /* date encryption cipher */
  175. int key_len; /* key length */
  176. unsigned char *key; /* key */
  177. /* unused, and wrong size
  178.    unsigned char iv[8]; */
  179. int  data_enc; /* is the data encrypted */
  180. int data_len;
  181. unsigned char *data;
  182. } PEM_CTX;
  183. /* These macros make the PEM_read/PEM_write functions easier to maintain and
  184.  * write. Now they are all implemented with either:
  185.  * IMPLEMENT_PEM_rw(...) or IMPLEMENT_PEM_rw_cb(...)
  186.  */
  187. #ifdef OPENSSL_NO_FP_API
  188. #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
  189. #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
  190. #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
  191. #else
  192. #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) 
  193. type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)
  194. return(((type *(*)(D2I_OF(type),char *,FILE *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read))(d2i_##asn1, str,fp,x,cb,u)); 
  195. #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) 
  196. int PEM_write_##name(FILE *fp, type *x) 
  197. return(((int (*)(I2D_OF(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL)); 
  198. }
  199. #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) 
  200. int PEM_write_##name(FILE *fp, const type *x) 
  201. return(((int (*)(I2D_OF_const(type),const char *,FILE *, const type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL)); 
  202. }
  203. #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) 
  204. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, 
  205.      unsigned char *kstr, int klen, pem_password_cb *cb, 
  206.   void *u) 
  207. return(((int (*)(I2D_OF(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u)); 
  208. }
  209. #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) 
  210. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, 
  211.      unsigned char *kstr, int klen, pem_password_cb *cb, 
  212.   void *u) 
  213. return(((int (*)(I2D_OF_const(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u)); 
  214. }
  215. #endif
  216. #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) 
  217. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)
  218. return(((type *(*)(D2I_OF(type),const char *,BIO *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read_bio))(d2i_##asn1, str,bp,x,cb,u)); 
  219. }
  220. #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) 
  221. int PEM_write_bio_##name(BIO *bp, type *x) 
  222. return(((int (*)(I2D_OF(type),const char *,BIO *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); 
  223. }
  224. #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) 
  225. int PEM_write_bio_##name(BIO *bp, const type *x) 
  226. return(((int (*)(I2D_OF_const(type),const char *,BIO *,const type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); 
  227. }
  228. #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) 
  229. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, 
  230.      unsigned char *kstr, int klen, pem_password_cb *cb, void *u) 
  231. return(((int (*)(I2D_OF(type),const char *,BIO *,type *,const EVP_CIPHER *,unsigned char *,int,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u)); 
  232. }
  233. #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) 
  234. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, 
  235.      unsigned char *kstr, int klen, pem_password_cb *cb, void *u) 
  236. return(((int (*)(I2D_OF_const(type),const char *,BIO *,type *,const EVP_CIPHER *,unsigned char *,int,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u)); 
  237. }
  238. #define IMPLEMENT_PEM_write(name, type, str, asn1) 
  239. IMPLEMENT_PEM_write_bio(name, type, str, asn1) 
  240. IMPLEMENT_PEM_write_fp(name, type, str, asn1) 
  241. #define IMPLEMENT_PEM_write_const(name, type, str, asn1) 
  242. IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) 
  243. IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) 
  244. #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) 
  245. IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) 
  246. IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) 
  247. #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) 
  248. IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) 
  249. IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) 
  250. #define IMPLEMENT_PEM_read(name, type, str, asn1) 
  251. IMPLEMENT_PEM_read_bio(name, type, str, asn1) 
  252. IMPLEMENT_PEM_read_fp(name, type, str, asn1) 
  253. #define IMPLEMENT_PEM_rw(name, type, str, asn1) 
  254. IMPLEMENT_PEM_read(name, type, str, asn1) 
  255. IMPLEMENT_PEM_write(name, type, str, asn1)
  256. #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) 
  257. IMPLEMENT_PEM_read(name, type, str, asn1) 
  258. IMPLEMENT_PEM_write_const(name, type, str, asn1)
  259. #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) 
  260. IMPLEMENT_PEM_read(name, type, str, asn1) 
  261. IMPLEMENT_PEM_write_cb(name, type, str, asn1)
  262. /* These are the same except they are for the declarations */
  263. #if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_NO_FP_API)
  264. #define DECLARE_PEM_read_fp(name, type) /**/
  265. #define DECLARE_PEM_write_fp(name, type) /**/
  266. #define DECLARE_PEM_write_cb_fp(name, type) /**/
  267. #else
  268. #define DECLARE_PEM_read_fp(name, type) 
  269. type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);
  270. #define DECLARE_PEM_write_fp(name, type) 
  271. int PEM_write_##name(FILE *fp, type *x);
  272. #define DECLARE_PEM_write_fp_const(name, type) 
  273. int PEM_write_##name(FILE *fp, const type *x);
  274. #define DECLARE_PEM_write_cb_fp(name, type) 
  275. int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, 
  276.      unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  277. #endif
  278. #ifndef OPENSSL_NO_BIO
  279. #define DECLARE_PEM_read_bio(name, type) 
  280. type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
  281. #define DECLARE_PEM_write_bio(name, type) 
  282. int PEM_write_bio_##name(BIO *bp, type *x);
  283. #define DECLARE_PEM_write_bio_const(name, type) 
  284. int PEM_write_bio_##name(BIO *bp, const type *x);
  285. #define DECLARE_PEM_write_cb_bio(name, type) 
  286. int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, 
  287.      unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
  288. #else
  289. #define DECLARE_PEM_read_bio(name, type) /**/
  290. #define DECLARE_PEM_write_bio(name, type) /**/
  291. #define DECLARE_PEM_write_cb_bio(name, type) /**/
  292. #endif
  293. #define DECLARE_PEM_write(name, type) 
  294. DECLARE_PEM_write_bio(name, type) 
  295. DECLARE_PEM_write_fp(name, type) 
  296. #define DECLARE_PEM_write_const(name, type) 
  297. DECLARE_PEM_write_bio_const(name, type) 
  298. DECLARE_PEM_write_fp_const(name, type)
  299. #define DECLARE_PEM_write_cb(name, type) 
  300. DECLARE_PEM_write_cb_bio(name, type) 
  301. DECLARE_PEM_write_cb_fp(name, type) 
  302. #define DECLARE_PEM_read(name, type) 
  303. DECLARE_PEM_read_bio(name, type) 
  304. DECLARE_PEM_read_fp(name, type)
  305. #define DECLARE_PEM_rw(name, type) 
  306. DECLARE_PEM_read(name, type) 
  307. DECLARE_PEM_write(name, type)
  308. #define DECLARE_PEM_rw_const(name, type) 
  309. DECLARE_PEM_read(name, type) 
  310. DECLARE_PEM_write_const(name, type)
  311. #define DECLARE_PEM_rw_cb(name, type) 
  312. DECLARE_PEM_read(name, type) 
  313. DECLARE_PEM_write_cb(name, type)
  314. #ifdef SSLEAY_MACROS
  315. #define PEM_write_SSL_SESSION(fp,x) 
  316. PEM_ASN1_write((int (*)())i2d_SSL_SESSION, 
  317. PEM_STRING_SSL_SESSION,fp, (char *)x, NULL,NULL,0,NULL,NULL)
  318. #define PEM_write_X509(fp,x) 
  319. PEM_ASN1_write((int (*)())i2d_X509,PEM_STRING_X509,fp, 
  320. (char *)x, NULL,NULL,0,NULL,NULL)
  321. #define PEM_write_X509_REQ(fp,x) PEM_ASN1_write( 
  322. (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,fp,(char *)x, 
  323. NULL,NULL,0,NULL,NULL)
  324. #define PEM_write_X509_CRL(fp,x) 
  325. PEM_ASN1_write((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL, 
  326. fp,(char *)x, NULL,NULL,0,NULL,NULL)
  327. #define PEM_write_RSAPrivateKey(fp,x,enc,kstr,klen,cb,u) 
  328. PEM_ASN1_write((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,fp,
  329. (char *)x,enc,kstr,klen,cb,u)
  330. #define PEM_write_RSAPublicKey(fp,x) 
  331. PEM_ASN1_write((int (*)())i2d_RSAPublicKey,
  332. PEM_STRING_RSA_PUBLIC,fp,(char *)x,NULL,NULL,0,NULL,NULL)
  333. #define PEM_write_DSAPrivateKey(fp,x,enc,kstr,klen,cb,u) 
  334. PEM_ASN1_write((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,fp,
  335. (char *)x,enc,kstr,klen,cb,u)
  336. #define PEM_write_PrivateKey(bp,x,enc,kstr,klen,cb,u) 
  337. PEM_ASN1_write((int (*)())i2d_PrivateKey,
  338. (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),
  339. bp,(char *)x,enc,kstr,klen,cb,u)
  340. #define PEM_write_PKCS7(fp,x) 
  341. PEM_ASN1_write((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,fp, 
  342. (char *)x, NULL,NULL,0,NULL,NULL)
  343. #define PEM_write_DHparams(fp,x) 
  344. PEM_ASN1_write((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,fp,
  345. (char *)x,NULL,NULL,0,NULL,NULL)
  346. #define PEM_write_NETSCAPE_CERT_SEQUENCE(fp,x) 
  347.                 PEM_ASN1_write((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, 
  348. PEM_STRING_X509,fp, 
  349.                         (char *)x, NULL,NULL,0,NULL,NULL)
  350. #define PEM_read_SSL_SESSION(fp,x,cb,u) (SSL_SESSION *)PEM_ASN1_read( 
  351. (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,fp,(char **)x,cb,u)
  352. #define PEM_read_X509(fp,x,cb,u) (X509 *)PEM_ASN1_read( 
  353. (char *(*)())d2i_X509,PEM_STRING_X509,fp,(char **)x,cb,u)
  354. #define PEM_read_X509_REQ(fp,x,cb,u) (X509_REQ *)PEM_ASN1_read( 
  355. (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,fp,(char **)x,cb,u)
  356. #define PEM_read_X509_CRL(fp,x,cb,u) (X509_CRL *)PEM_ASN1_read( 
  357. (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,fp,(char **)x,cb,u)
  358. #define PEM_read_RSAPrivateKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( 
  359. (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,fp,(char **)x,cb,u)
  360. #define PEM_read_RSAPublicKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( 
  361. (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,fp,(char **)x,cb,u)
  362. #define PEM_read_DSAPrivateKey(fp,x,cb,u) (DSA *)PEM_ASN1_read( 
  363. (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,fp,(char **)x,cb,u)
  364. #define PEM_read_PrivateKey(fp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read( 
  365. (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,fp,(char **)x,cb,u)
  366. #define PEM_read_PKCS7(fp,x,cb,u) (PKCS7 *)PEM_ASN1_read( 
  367. (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,fp,(char **)x,cb,u)
  368. #define PEM_read_DHparams(fp,x,cb,u) (DH *)PEM_ASN1_read( 
  369. (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,fp,(char **)x,cb,u)
  370. #define PEM_read_NETSCAPE_CERT_SEQUENCE(fp,x,cb,u) 
  371. (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read( 
  372.         (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,fp,
  373. (char **)x,cb,u)
  374. #define PEM_write_bio_X509(bp,x) 
  375. PEM_ASN1_write_bio((int (*)())i2d_X509,PEM_STRING_X509,bp, 
  376. (char *)x, NULL,NULL,0,NULL,NULL)
  377. #define PEM_write_bio_X509_REQ(bp,x) PEM_ASN1_write_bio( 
  378. (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,bp,(char *)x, 
  379. NULL,NULL,0,NULL,NULL)
  380. #define PEM_write_bio_X509_CRL(bp,x) 
  381. PEM_ASN1_write_bio((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL,
  382. bp,(char *)x, NULL,NULL,0,NULL,NULL)
  383. #define PEM_write_bio_RSAPrivateKey(bp,x,enc,kstr,klen,cb,u) 
  384. PEM_ASN1_write_bio((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,
  385. bp,(char *)x,enc,kstr,klen,cb,u)
  386. #define PEM_write_bio_RSAPublicKey(bp,x) 
  387. PEM_ASN1_write_bio((int (*)())i2d_RSAPublicKey, 
  388. PEM_STRING_RSA_PUBLIC,
  389. bp,(char *)x,NULL,NULL,0,NULL,NULL)
  390. #define PEM_write_bio_DSAPrivateKey(bp,x,enc,kstr,klen,cb,u) 
  391. PEM_ASN1_write_bio((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,
  392. bp,(char *)x,enc,kstr,klen,cb,u)
  393. #define PEM_write_bio_PrivateKey(bp,x,enc,kstr,klen,cb,u) 
  394. PEM_ASN1_write_bio((int (*)())i2d_PrivateKey,
  395. (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),
  396. bp,(char *)x,enc,kstr,klen,cb,u)
  397. #define PEM_write_bio_PKCS7(bp,x) 
  398. PEM_ASN1_write_bio((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,bp, 
  399. (char *)x, NULL,NULL,0,NULL,NULL)
  400. #define PEM_write_bio_DHparams(bp,x) 
  401. PEM_ASN1_write_bio((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,
  402. bp,(char *)x,NULL,NULL,0,NULL,NULL)
  403. #define PEM_write_bio_DSAparams(bp,x) 
  404. PEM_ASN1_write_bio((int (*)())i2d_DSAparams, 
  405. PEM_STRING_DSAPARAMS,bp,(char *)x,NULL,NULL,0,NULL,NULL)
  406. #define PEM_write_bio_NETSCAPE_CERT_SEQUENCE(bp,x) 
  407.                 PEM_ASN1_write_bio((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, 
  408. PEM_STRING_X509,bp, 
  409.                         (char *)x, NULL,NULL,0,NULL,NULL)
  410. #define PEM_read_bio_X509(bp,x,cb,u) (X509 *)PEM_ASN1_read_bio( 
  411. (char *(*)())d2i_X509,PEM_STRING_X509,bp,(char **)x,cb,u)
  412. #define PEM_read_bio_X509_REQ(bp,x,cb,u) (X509_REQ *)PEM_ASN1_read_bio( 
  413. (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,bp,(char **)x,cb,u)
  414. #define PEM_read_bio_X509_CRL(bp,x,cb,u) (X509_CRL *)PEM_ASN1_read_bio( 
  415. (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,bp,(char **)x,cb,u)
  416. #define PEM_read_bio_RSAPrivateKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( 
  417. (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,bp,(char **)x,cb,u)
  418. #define PEM_read_bio_RSAPublicKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( 
  419. (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,bp,(char **)x,cb,u)
  420. #define PEM_read_bio_DSAPrivateKey(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( 
  421. (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,bp,(char **)x,cb,u)
  422. #define PEM_read_bio_PrivateKey(bp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read_bio( 
  423. (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,bp,(char **)x,cb,u)
  424. #define PEM_read_bio_PKCS7(bp,x,cb,u) (PKCS7 *)PEM_ASN1_read_bio( 
  425. (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,bp,(char **)x,cb,u)
  426. #define PEM_read_bio_DHparams(bp,x,cb,u) (DH *)PEM_ASN1_read_bio( 
  427. (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,bp,(char **)x,cb,u)
  428. #define PEM_read_bio_DSAparams(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( 
  429. (char *(*)())d2i_DSAparams,PEM_STRING_DSAPARAMS,bp,(char **)x,cb,u)
  430. #define PEM_read_bio_NETSCAPE_CERT_SEQUENCE(bp,x,cb,u) 
  431. (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read_bio( 
  432.         (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,bp,
  433. (char **)x,cb,u)
  434. #endif
  435. #if 1
  436. /* "userdata": new with OpenSSL 0.9.4 */
  437. typedef int pem_password_cb(char *buf, int size, int rwflag, void *userdata);
  438. #else
  439. /* OpenSSL 0.9.3, 0.9.3a */
  440. typedef int pem_password_cb(char *buf, int size, int rwflag);
  441. #endif
  442. int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher);
  443. int PEM_do_header (EVP_CIPHER_INFO *cipher, unsigned char *data,long *len,
  444. pem_password_cb *callback,void *u);
  445. #ifndef OPENSSL_NO_BIO
  446. int PEM_read_bio(BIO *bp, char **name, char **header,
  447. unsigned char **data,long *len);
  448. int PEM_write_bio(BIO *bp,const char *name,char *hdr,unsigned char *data,
  449. long len);
  450. int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp,
  451.      pem_password_cb *cb, void *u);
  452. void * PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp,
  453.   void **x, pem_password_cb *cb, void *u);
  454. #define PEM_ASN1_read_bio_of(type,d2i,name,bp,x,cb,u) 
  455. ((type *(*)(D2I_OF(type),const char *,BIO *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read_bio))(d2i,name,bp,x,cb,u)
  456. int PEM_ASN1_write_bio(i2d_of_void *i2d,const char *name,BIO *bp,char *x,
  457.    const EVP_CIPHER *enc,unsigned char *kstr,int klen,
  458.    pem_password_cb *cb, void *u);
  459. #define PEM_ASN1_write_bio_of(type,i2d,name,bp,x,enc,kstr,klen,cb,u) 
  460. ((int (*)(I2D_OF(type),const char *,BIO *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d,name,bp,x,enc,kstr,klen,cb,u)
  461. STACK_OF(X509_INFO) * PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u);
  462. int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc,
  463. unsigned char *kstr, int klen, pem_password_cb *cd, void *u);
  464. #endif
  465. #ifndef OPENSSL_SYS_WIN16
  466. int PEM_read(FILE *fp, char **name, char **header,
  467. unsigned char **data,long *len);
  468. int PEM_write(FILE *fp,char *name,char *hdr,unsigned char *data,long len);
  469. void *  PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
  470.       pem_password_cb *cb, void *u);
  471. int PEM_ASN1_write(i2d_of_void *i2d,const char *name,FILE *fp,
  472.        char *x,const EVP_CIPHER *enc,unsigned char *kstr,
  473.        int klen,pem_password_cb *callback, void *u);
  474. STACK_OF(X509_INFO) * PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
  475. pem_password_cb *cb, void *u);
  476. #endif
  477. int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
  478. EVP_MD *md_type, unsigned char **ek, int *ekl,
  479. unsigned char *iv, EVP_PKEY **pubk, int npubk);
  480. void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl,
  481. unsigned char *in, int inl);
  482. int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig,int *sigl,
  483. unsigned char *out, int *outl, EVP_PKEY *priv);
  484. void    PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type);
  485. void    PEM_SignUpdate(EVP_MD_CTX *ctx,unsigned char *d,unsigned int cnt);
  486. int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
  487. unsigned int *siglen, EVP_PKEY *pkey);
  488. int PEM_def_callback(char *buf, int num, int w, void *key);
  489. void PEM_proc_type(char *buf, int type);
  490. void PEM_dek_info(char *buf, const char *type, int len, char *str);
  491. #ifndef SSLEAY_MACROS
  492. #include <openssl/symhacks.h>
  493. DECLARE_PEM_rw(X509, X509)
  494. DECLARE_PEM_rw(X509_AUX, X509)
  495. DECLARE_PEM_rw(X509_CERT_PAIR, X509_CERT_PAIR)
  496. DECLARE_PEM_rw(X509_REQ, X509_REQ)
  497. DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
  498. DECLARE_PEM_rw(X509_CRL, X509_CRL)
  499. DECLARE_PEM_rw(PKCS7, PKCS7)
  500. DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
  501. DECLARE_PEM_rw(PKCS8, X509_SIG)
  502. DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
  503. #ifndef OPENSSL_NO_RSA
  504. DECLARE_PEM_rw_cb(RSAPrivateKey, RSA)
  505. DECLARE_PEM_rw_const(RSAPublicKey, RSA)
  506. DECLARE_PEM_rw(RSA_PUBKEY, RSA)
  507. #endif
  508. #ifndef OPENSSL_NO_DSA
  509. DECLARE_PEM_rw_cb(DSAPrivateKey, DSA)
  510. DECLARE_PEM_rw(DSA_PUBKEY, DSA)
  511. DECLARE_PEM_rw_const(DSAparams, DSA)
  512. #endif
  513. #ifndef OPENSSL_NO_EC
  514. DECLARE_PEM_rw_const(ECPKParameters, EC_GROUP)
  515. DECLARE_PEM_rw_cb(ECPrivateKey, EC_KEY)
  516. DECLARE_PEM_rw(EC_PUBKEY, EC_KEY)
  517. #endif
  518. #ifndef OPENSSL_NO_DH
  519. DECLARE_PEM_rw_const(DHparams, DH)
  520. #endif
  521. DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY)
  522. DECLARE_PEM_rw(PUBKEY, EVP_PKEY)
  523. int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
  524.   char *kstr, int klen,
  525.   pem_password_cb *cb, void *u);
  526. int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
  527.                                   char *, int, pem_password_cb *, void *);
  528. int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
  529.   char *kstr, int klen,
  530.   pem_password_cb *cb, void *u);
  531. int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
  532.   char *kstr, int klen,
  533.   pem_password_cb *cb, void *u);
  534. EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
  535. int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
  536.   char *kstr, int klen,
  537.   pem_password_cb *cb, void *u);
  538. int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid,
  539.   char *kstr, int klen,
  540.   pem_password_cb *cb, void *u);
  541. int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid,
  542.   char *kstr, int klen,
  543.   pem_password_cb *cb, void *u);
  544. EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u);
  545. int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
  546.       char *kstr,int klen, pem_password_cb *cd, void *u);
  547. #endif /* SSLEAY_MACROS */
  548. /* BEGIN ERROR CODES */
  549. /* The following lines are auto generated by the script mkerr.pl. Any changes
  550.  * made after this point may be overwritten when the script is next run.
  551.  */
  552. void ERR_load_PEM_strings(void);
  553. /* Error codes for the PEM functions. */
  554. /* Function codes. */
  555. #define PEM_F_D2I_PKCS8PRIVATEKEY_BIO  120
  556. #define PEM_F_D2I_PKCS8PRIVATEKEY_FP  121
  557. #define PEM_F_DO_PK8PKEY  126
  558. #define PEM_F_DO_PK8PKEY_FP  125
  559. #define PEM_F_LOAD_IV  101
  560. #define PEM_F_PEM_ASN1_READ  102
  561. #define PEM_F_PEM_ASN1_READ_BIO  103
  562. #define PEM_F_PEM_ASN1_WRITE  104
  563. #define PEM_F_PEM_ASN1_WRITE_BIO  105
  564. #define PEM_F_PEM_DEF_CALLBACK  100
  565. #define PEM_F_PEM_DO_HEADER  106
  566. #define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY  118
  567. #define PEM_F_PEM_GET_EVP_CIPHER_INFO  107
  568. #define PEM_F_PEM_PK8PKEY  119
  569. #define PEM_F_PEM_READ  108
  570. #define PEM_F_PEM_READ_BIO  109
  571. #define PEM_F_PEM_READ_BIO_PRIVATEKEY  123
  572. #define PEM_F_PEM_READ_PRIVATEKEY  124
  573. #define PEM_F_PEM_SEALFINAL  110
  574. #define PEM_F_PEM_SEALINIT  111
  575. #define PEM_F_PEM_SIGNFINAL  112
  576. #define PEM_F_PEM_WRITE  113
  577. #define PEM_F_PEM_WRITE_BIO  114
  578. #define PEM_F_PEM_X509_INFO_READ  115
  579. #define PEM_F_PEM_X509_INFO_READ_BIO  116
  580. #define PEM_F_PEM_X509_INFO_WRITE_BIO  117
  581. /* Reason codes. */
  582. #define PEM_R_BAD_BASE64_DECODE  100
  583. #define PEM_R_BAD_DECRYPT  101
  584. #define PEM_R_BAD_END_LINE  102
  585. #define PEM_R_BAD_IV_CHARS  103
  586. #define PEM_R_BAD_PASSWORD_READ  104
  587. #define PEM_R_ERROR_CONVERTING_PRIVATE_KEY  115
  588. #define PEM_R_NOT_DEK_INFO  105
  589. #define PEM_R_NOT_ENCRYPTED  106
  590. #define PEM_R_NOT_PROC_TYPE  107
  591. #define PEM_R_NO_START_LINE  108
  592. #define PEM_R_PROBLEMS_GETTING_PASSWORD  109
  593. #define PEM_R_PUBLIC_KEY_NO_RSA  110
  594. #define PEM_R_READ_KEY  111
  595. #define PEM_R_SHORT_HEADER  112
  596. #define PEM_R_UNSUPPORTED_CIPHER  113
  597. #define PEM_R_UNSUPPORTED_ENCRYPTION  114
  598. #ifdef  __cplusplus
  599. }
  600. #endif
  601. #endif