pem_all.c 13.8 KB
Newer Older
1
/* crypto/pem/pem_all.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

#include <stdio.h>
#undef SSLEAY_MACROS
61
#include "cryptlib.h"
62 63 64 65 66
#include <openssl/bio.h>
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <openssl/pkcs7.h>
#include <openssl/pem.h>
67

68
#ifndef NO_FP_API
69
/* The X509 functions */
70
X509 *PEM_read_X509(FILE *fp, X509 **x, pem_password_cb *cb)
71 72 73 74 75 76
	{
	return((X509 *)PEM_ASN1_read((char *(*)())d2i_X509,
		PEM_STRING_X509,fp,(char **)x,cb));
	}
#endif

77
X509 *PEM_read_bio_X509(BIO *bp, X509 **x, pem_password_cb *cb)
78 79 80 81 82
	{
	return((X509 *)PEM_ASN1_read_bio((char *(*)())d2i_X509,
		PEM_STRING_X509,bp,(char **)x,cb));
	}

83
#ifndef NO_FP_API
U
Ulf Möller 已提交
84
int PEM_write_X509(FILE *fp, X509 *x)
85 86 87 88 89 90
	{
	return(PEM_ASN1_write((int (*)())i2d_X509,PEM_STRING_X509,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
91
int PEM_write_bio_X509(BIO *bp, X509 *x)
92 93 94 95 96
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_X509,PEM_STRING_X509,bp,
		(char *)x, NULL,NULL,0,NULL));
	}

97
#ifndef NO_FP_API
98
/* The X509_REQ functions */
99
X509_REQ *PEM_read_X509_REQ(FILE *fp, X509_REQ **x, pem_password_cb *cb)
100 101 102 103 104 105
	{
	return((X509_REQ *)PEM_ASN1_read((char *(*)())d2i_X509_REQ,
		PEM_STRING_X509_REQ,fp,(char **)x,cb));
	}
#endif

106
X509_REQ *PEM_read_bio_X509_REQ(BIO *bp, X509_REQ **x, pem_password_cb *cb)
107 108 109 110 111
	{
	return((X509_REQ *)PEM_ASN1_read_bio((char *(*)())d2i_X509_REQ,
		PEM_STRING_X509_REQ,bp,(char **)x,cb));
	}

112
#ifndef NO_FP_API
U
Ulf Möller 已提交
113
int PEM_write_X509_REQ(FILE *fp, X509_REQ *x)
114 115 116 117 118 119
	{
	return(PEM_ASN1_write((int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
120
int PEM_write_bio_X509_REQ(BIO *bp, X509_REQ *x)
121 122 123 124 125
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,
		bp,(char *)x, NULL,NULL,0,NULL));
	}

126
#ifndef NO_FP_API
127
/* The X509_CRL functions */
128
X509_CRL *PEM_read_X509_CRL(FILE *fp, X509_CRL **x, pem_password_cb *cb)
129 130 131 132 133 134
	{
	return((X509_CRL *)PEM_ASN1_read((char *(*)())d2i_X509_CRL,
		PEM_STRING_X509_CRL,fp,(char **)x,cb));
	}
#endif

135
X509_CRL *PEM_read_bio_X509_CRL(BIO *bp, X509_CRL **x, pem_password_cb *cb)
136 137 138 139 140
	{
	return((X509_CRL *)PEM_ASN1_read_bio((char *(*)())d2i_X509_CRL,
		PEM_STRING_X509_CRL,bp,(char **)x,cb));
	}

141
#ifndef NO_FP_API
U
Ulf Möller 已提交
142
int PEM_write_X509_CRL(FILE *fp, X509_CRL *x)
143 144 145 146 147 148
	{
	return(PEM_ASN1_write((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
149
int PEM_write_bio_X509_CRL(BIO *bp, X509_CRL *x)
150 151 152 153 154 155
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL,
		bp,(char *)x, NULL,NULL,0,NULL));
	}

#ifndef NO_RSA
156
#ifndef NO_FP_API
157
/* The RSAPrivateKey functions */
158
RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **x, pem_password_cb *cb)
159 160 161 162 163
	{
	return((RSA *)PEM_ASN1_read((char *(*)())d2i_RSAPrivateKey,
		PEM_STRING_RSA,fp,(char **)x,cb));
	}

164
RSA *PEM_read_RSAPublicKey(FILE *fp, RSA **x, pem_password_cb *cb)
165 166 167 168 169 170
	{
	return((RSA *)PEM_ASN1_read((char *(*)())d2i_RSAPublicKey,
		PEM_STRING_RSA_PUBLIC,fp,(char **)x,cb));
	}
#endif

171
RSA *PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **x, pem_password_cb *cb)
172 173 174 175 176
	{
	return((RSA *)PEM_ASN1_read_bio((char *(*)())d2i_RSAPrivateKey,
		PEM_STRING_RSA,bp,(char **)x,cb));
	}

177
RSA *PEM_read_bio_RSAPublicKey(BIO *bp, RSA **x, pem_password_cb *cb)
178 179 180 181 182
	{
	return((RSA *)PEM_ASN1_read_bio((char *(*)())d2i_RSAPublicKey,
		PEM_STRING_RSA_PUBLIC,bp,(char **)x,cb));
	}

183
#ifndef NO_FP_API
U
Ulf Möller 已提交
184
int PEM_write_RSAPrivateKey(FILE *fp, RSA *x, EVP_CIPHER *enc,
185
	     unsigned char *kstr, int klen, pem_password_cb *cb)
186 187 188 189 190
	{
	return(PEM_ASN1_write((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,fp,
		(char *)x,enc,kstr,klen,cb));
	}

U
Ulf Möller 已提交
191
int PEM_write_RSAPublicKey(FILE *fp, RSA *x)
192 193 194 195 196 197 198
	{
	return(PEM_ASN1_write((int (*)())i2d_RSAPublicKey,
		PEM_STRING_RSA_PUBLIC,fp,
		(char *)x,NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
199
int PEM_write_bio_RSAPrivateKey(BIO *bp, RSA *x, const EVP_CIPHER *enc,
200
	     unsigned char *kstr, int klen, pem_password_cb *cb)
201 202 203 204 205
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,
		bp,(char *)x,enc,kstr,klen,cb));
	}

U
Ulf Möller 已提交
206
int PEM_write_bio_RSAPublicKey(BIO *bp, RSA *x)
207 208 209 210 211 212 213 214
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_RSAPublicKey,
		PEM_STRING_RSA_PUBLIC,
		bp,(char *)x,NULL,NULL,0,NULL));
	}
#endif /* !NO_RSA */

#ifndef NO_DSA
215
#ifndef NO_FP_API
216
/* The DSAPrivateKey functions */
217
DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **x, pem_password_cb *cb)
218 219 220 221 222 223
	{
	return((DSA *)PEM_ASN1_read((char *(*)())d2i_DSAPrivateKey,
		PEM_STRING_DSA,fp,(char **)x,cb));
	}
#endif

224
DSA *PEM_read_bio_DSAPrivateKey(BIO *bp, DSA **x, pem_password_cb *cb)
225 226 227 228 229
	{
	return((DSA *)PEM_ASN1_read_bio((char *(*)())d2i_DSAPrivateKey,
		PEM_STRING_DSA,bp,(char **)x,cb));
	}

230
#ifndef NO_FP_API
U
Ulf Möller 已提交
231
int PEM_write_DSAPrivateKey(FILE *fp, DSA *x, const EVP_CIPHER *enc,
232
	     unsigned char *kstr, int klen, pem_password_cb *cb)
233 234 235 236 237 238
	{
	return(PEM_ASN1_write((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,fp,
		(char *)x,enc,kstr,klen,cb));
	}
#endif

U
Ulf Möller 已提交
239
int PEM_write_bio_DSAPrivateKey(BIO *bp, DSA *x, const EVP_CIPHER *enc,
240
	     unsigned char *kstr, int klen, pem_password_cb *cb)
241 242 243 244 245 246
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,
		bp,(char *)x,enc,kstr,klen,cb));
	}
#endif

247
#ifndef NO_FP_API
248
/* The PrivateKey functions */
249
EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb)
250 251 252 253 254 255
	{
	return((EVP_PKEY *)PEM_ASN1_read((char *(*)())d2i_PrivateKey,
		PEM_STRING_EVP_PKEY,fp,(char **)x,cb));
	}
#endif

256
EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb)
257 258 259 260 261
	{
	return((EVP_PKEY *)PEM_ASN1_read_bio((char *(*)())d2i_PrivateKey,
		PEM_STRING_EVP_PKEY,bp,(char **)x,cb));
	}

262
#ifndef NO_FP_API
U
Ulf Möller 已提交
263
int PEM_write_PrivateKey(FILE *fp, EVP_PKEY *x, EVP_CIPHER *enc,
264
	     unsigned char *kstr, int klen, pem_password_cb *cb)
265 266 267 268 269 270 271
	{
	return(PEM_ASN1_write((int (*)())i2d_PrivateKey,
		((x->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),
		fp,(char *)x,enc,kstr,klen,cb));
	}
#endif

U
Ulf Möller 已提交
272
int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, EVP_CIPHER *enc,
273
	     unsigned char *kstr, int klen, pem_password_cb *cb)
274 275 276 277 278 279
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_PrivateKey,
		((x->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),
		bp,(char *)x,enc,kstr,klen,cb));
	}

280
#ifndef NO_FP_API
281
/* The PKCS7 functions */
282
PKCS7 *PEM_read_PKCS7(FILE *fp, PKCS7 **x, pem_password_cb *cb)
283 284 285 286 287 288
	{
	return((PKCS7 *)PEM_ASN1_read((char *(*)())d2i_PKCS7,
		PEM_STRING_PKCS7,fp,(char **)x,cb));
	}
#endif

289
PKCS7 *PEM_read_bio_PKCS7(BIO *bp, PKCS7 **x, pem_password_cb *cb)
290 291 292 293 294
	{
	return((PKCS7 *)PEM_ASN1_read_bio((char *(*)())d2i_PKCS7,
		PEM_STRING_PKCS7,bp,(char **)x,cb));
	}

295
#ifndef NO_FP_API
U
Ulf Möller 已提交
296
int PEM_write_PKCS7(FILE *fp, PKCS7 *x)
297 298 299 300 301 302
	{
	return(PEM_ASN1_write((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
303
int PEM_write_bio_PKCS7(BIO *bp, PKCS7 *x)
304 305 306 307 308 309
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,bp,
		(char *)x, NULL,NULL,0,NULL));
	}

#ifndef NO_DH
310
#ifndef NO_FP_API
311
/* The DHparams functions */
312
DH *PEM_read_DHparams(FILE *fp, DH **x, pem_password_cb *cb)
313 314 315 316 317 318
	{
	return((DH *)PEM_ASN1_read((char *(*)())d2i_DHparams,
		PEM_STRING_DHPARAMS,fp,(char **)x,cb));
	}
#endif

319
DH *PEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb)
320 321 322 323 324
	{
	return((DH *)PEM_ASN1_read_bio((char *(*)())d2i_DHparams,
		PEM_STRING_DHPARAMS,bp,(char **)x,cb));
	}

325
#ifndef NO_FP_API
U
Ulf Möller 已提交
326
int PEM_write_DHparams(FILE *fp, DH *x)
327 328 329 330 331 332
	{
	return(PEM_ASN1_write((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
333
int PEM_write_bio_DHparams(BIO *bp, DH *x)
334 335 336 337 338 339 340
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,
		bp,(char *)x, NULL,NULL,0,NULL));
	}
#endif

#ifndef NO_DSA
341
#ifndef NO_FP_API
342
/* The DSAparams functions */
343
DSA *PEM_read_DSAparams(FILE *fp, DSA **x, pem_password_cb *cb)
344 345 346 347 348 349
	{
	return((DSA *)PEM_ASN1_read((char *(*)())d2i_DSAparams,
		PEM_STRING_DSAPARAMS,fp,(char **)x,cb));
	}
#endif

350
DSA *PEM_read_bio_DSAparams(BIO *bp, DSA **x, pem_password_cb *cb)
351 352 353 354 355
	{
	return((DSA *)PEM_ASN1_read_bio((char *(*)())d2i_DSAparams,
		PEM_STRING_DSAPARAMS,bp,(char **)x,cb));
	}

356
#ifndef NO_FP_API
U
Ulf Möller 已提交
357
int PEM_write_DSAparams(FILE *fp, DSA *x)
358 359 360 361 362 363
	{
	return(PEM_ASN1_write((int (*)())i2d_DSAparams,PEM_STRING_DSAPARAMS,fp,
		(char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
364
int PEM_write_bio_DSAparams(BIO *bp, DSA *x)
365 366 367 368 369 370
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_DSAparams,PEM_STRING_DSAPARAMS,
		bp,(char *)x, NULL,NULL,0,NULL));
	}
#endif

371 372 373
/* The Netscape Certificate sequence functions */

#ifndef NO_FP_API
U
Ulf Möller 已提交
374
NETSCAPE_CERT_SEQUENCE *PEM_read_NETSCAPE_CERT_SEQUENCE(FILE *fp,
375
	     NETSCAPE_CERT_SEQUENCE **x, pem_password_cb *cb)
376 377 378 379 380 381 382
	{
	return((NETSCAPE_CERT_SEQUENCE *)
		PEM_ASN1_read((char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,
		PEM_STRING_X509,fp,(char **)x,cb));
	}
#endif

U
Ulf Möller 已提交
383
NETSCAPE_CERT_SEQUENCE *PEM_read_bio_NETSCAPE_CERT_SEQUENCE(BIO *bp,
384
	     NETSCAPE_CERT_SEQUENCE **x, pem_password_cb *cb)
385 386 387 388 389 390 391
	{
	return((NETSCAPE_CERT_SEQUENCE *)
		PEM_ASN1_read_bio((char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,
		PEM_STRING_X509,bp,(char **)x,cb));
	}

#ifndef NO_FP_API
U
Ulf Möller 已提交
392
int PEM_write_NETSCAPE_CERT_SEQUENCE(FILE *fp, NETSCAPE_CERT_SEQUENCE *x)
393 394 395 396 397 398
	{
	return(PEM_ASN1_write((int (*)())i2d_NETSCAPE_CERT_SEQUENCE,
		PEM_STRING_X509,fp, (char *)x, NULL,NULL,0,NULL));
	}
#endif

U
Ulf Möller 已提交
399
int PEM_write_bio_NETSCAPE_CERT_SEQUENCE(BIO *bp, NETSCAPE_CERT_SEQUENCE *x)
400 401 402 403 404
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_NETSCAPE_CERT_SEQUENCE,
		PEM_STRING_X509,bp, (char *)x, NULL,NULL,0,NULL));
	}

405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437

/* The PKCS8 functions */

#ifndef NO_FP_API
X509_SIG *PEM_read_PKCS8(FILE *fp,
	     X509_SIG **x, pem_password_cb *cb)
	{
	return((X509_SIG *) PEM_ASN1_read((char *(*)())d2i_X509_SIG,
		PEM_STRING_PKCS8,fp,(char **)x,cb));
	}
#endif

X509_SIG *PEM_read_bio_PKCS8(BIO *bp,
	     X509_SIG **x, pem_password_cb *cb)
	{
	return((X509_SIG *)
		PEM_ASN1_read_bio((char *(*)())d2i_X509_SIG,
		PEM_STRING_PKCS8,bp,(char **)x,cb));
	}

#ifndef NO_FP_API
int PEM_write_PKCS8(FILE *fp, X509_SIG *x)
	{
	return(PEM_ASN1_write((int (*)())i2d_X509_SIG,
		PEM_STRING_PKCS8,fp, (char *)x, NULL,NULL,0,NULL));
	}
#endif

int PEM_write_bio_PKCS8(BIO *bp, X509_SIG *x)
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_X509_SIG,
		PEM_STRING_PKCS8,bp, (char *)x, NULL,NULL,0,NULL));
	}
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469

#ifndef NO_FP_API
PKCS8_PRIV_KEY_INFO *PEM_read_PKCS8_PRIV_KEY_INFO(FILE *fp,
	     PKCS8_PRIV_KEY_INFO **x, pem_password_cb *cb)
	{
	return((PKCS8_PRIV_KEY_INFO *)
		PEM_ASN1_read((char *(*)())d2i_PKCS8_PRIV_KEY_INFO,
		PEM_STRING_PKCS8INF,fp,(char **)x,cb));
	}
#endif

PKCS8_PRIV_KEY_INFO *PEM_read_bio_PKCS8_PRIV_KEY_INFO(BIO *bp,
	     PKCS8_PRIV_KEY_INFO **x, pem_password_cb *cb)
	{
	return((PKCS8_PRIV_KEY_INFO *)
		PEM_ASN1_read_bio((char *(*)())d2i_PKCS8_PRIV_KEY_INFO,
		PEM_STRING_PKCS8INF,bp,(char **)x,cb));
	}

#ifndef NO_FP_API
int PEM_write_PKCS8_PRIV_KEY_INFO(FILE *fp, PKCS8_PRIV_KEY_INFO *x)
	{
	return(PEM_ASN1_write((int (*)())i2d_PKCS8_PRIV_KEY_INFO,
		PEM_STRING_PKCS8INF,fp, (char *)x, NULL,NULL,0,NULL));
	}
#endif

int PEM_write_bio_PKCS8_PRIV_KEY_INFO(BIO *bp, PKCS8_PRIV_KEY_INFO *x)
	{
	return(PEM_ASN1_write_bio((int (*)())i2d_PKCS8_PRIV_KEY_INFO,
		PEM_STRING_PKCS8INF,bp, (char *)x, NULL,NULL,0,NULL));
	}