Various Win32 fixes.
[openssl.git] / crypto / asn1 / t_pkey.c
1 /* crypto/asn1/t_pkey.c */
2 /* Copyright (C) 1995-1998 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 /* ====================================================================
59  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60  * Binary polynomial ECC support in OpenSSL originally developed by 
61  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62  */
63
64 #include <stdio.h>
65 #include "cryptlib.h"
66 #include <openssl/objects.h>
67 #include <openssl/buffer.h>
68 #include <openssl/bn.h>
69 #ifndef OPENSSL_NO_RSA
70 #include <openssl/rsa.h>
71 #endif
72 #ifndef OPENSSL_NO_DH
73 #include <openssl/dh.h>
74 #endif
75 #ifndef OPENSSL_NO_DSA
76 #include <openssl/dsa.h>
77 #endif
78 #ifndef OPENSSL_NO_EC
79 #include <openssl/ec.h>
80 #endif
81
82 static int print(BIO *fp,const char *str,BIGNUM *num,
83                 unsigned char *buf,int off);
84 static int print_bin(BIO *fp, const char *str, const unsigned char *num,
85                 size_t len, int off);
86 #ifndef OPENSSL_NO_RSA
87 #ifndef OPENSSL_NO_FP_API
88 int RSA_print_fp(FILE *fp, const RSA *x, int off)
89         {
90         BIO *b;
91         int ret;
92
93         if ((b=BIO_new(BIO_s_file())) == NULL)
94                 {
95                 RSAerr(RSA_F_RSA_PRINT_FP,ERR_R_BUF_LIB);
96                 return(0);
97                 }
98         BIO_set_fp(b,fp,BIO_NOCLOSE);
99         ret=RSA_print(b,x,off);
100         BIO_free(b);
101         return(ret);
102         }
103 #endif
104
105 int RSA_print(BIO *bp, const RSA *x, int off)
106         {
107         char str[128];
108         const char *s;
109         unsigned char *m=NULL;
110         int ret=0;
111         size_t buf_len=0, i;
112
113         if (x->n)
114                 buf_len = (size_t)BN_num_bytes(x->n);
115         if (x->e)
116                 if (buf_len < (i = (size_t)BN_num_bytes(x->e)))
117                         buf_len = i;
118         if (x->d)
119                 if (buf_len < (i = (size_t)BN_num_bytes(x->d)))
120                         buf_len = i;
121         if (x->p)
122                 if (buf_len < (i = (size_t)BN_num_bytes(x->p)))
123                         buf_len = i;
124         if (x->q)
125                 if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
126                         buf_len = i;
127         if (x->dmp1)
128                 if (buf_len < (i = (size_t)BN_num_bytes(x->dmp1)))
129                         buf_len = i;
130         if (x->dmq1)
131                 if (buf_len < (i = (size_t)BN_num_bytes(x->dmq1)))
132                         buf_len = i;
133         if (x->iqmp)
134                 if (buf_len < (i = (size_t)BN_num_bytes(x->iqmp)))
135                         buf_len = i;
136
137         m=(unsigned char *)OPENSSL_malloc(buf_len+10);
138         if (m == NULL)
139                 {
140                 RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE);
141                 goto err;
142                 }
143
144         if (off)
145                 {
146                 if (off > 128) off=128;
147                 memset(str,' ',off);
148                 }
149         if (x->d != NULL)
150                 {
151                 if (off && (BIO_write(bp,str,off) <= 0)) goto err;
152                 if (BIO_printf(bp,"Private-Key: (%d bit)\n",BN_num_bits(x->n))
153                         <= 0) goto err;
154                 }
155
156         if (x->d == NULL)
157                 sprintf(str,"Modulus (%d bit):",BN_num_bits(x->n));
158         else
159                 strcpy(str,"modulus:");
160         if (!print(bp,str,x->n,m,off)) goto err;
161         s=(x->d == NULL)?"Exponent:":"publicExponent:";
162         if (!print(bp,s,x->e,m,off)) goto err;
163         if (!print(bp,"privateExponent:",x->d,m,off)) goto err;
164         if (!print(bp,"prime1:",x->p,m,off)) goto err;
165         if (!print(bp,"prime2:",x->q,m,off)) goto err;
166         if (!print(bp,"exponent1:",x->dmp1,m,off)) goto err;
167         if (!print(bp,"exponent2:",x->dmq1,m,off)) goto err;
168         if (!print(bp,"coefficient:",x->iqmp,m,off)) goto err;
169         ret=1;
170 err:
171         if (m != NULL) OPENSSL_free(m);
172         return(ret);
173         }
174 #endif /* OPENSSL_NO_RSA */
175
176 #ifndef OPENSSL_NO_DSA
177 #ifndef OPENSSL_NO_FP_API
178 int DSA_print_fp(FILE *fp, const DSA *x, int off)
179         {
180         BIO *b;
181         int ret;
182
183         if ((b=BIO_new(BIO_s_file())) == NULL)
184                 {
185                 DSAerr(DSA_F_DSA_PRINT_FP,ERR_R_BUF_LIB);
186                 return(0);
187                 }
188         BIO_set_fp(b,fp,BIO_NOCLOSE);
189         ret=DSA_print(b,x,off);
190         BIO_free(b);
191         return(ret);
192         }
193 #endif
194
195 int DSA_print(BIO *bp, const DSA *x, int off)
196         {
197         char str[128];
198         unsigned char *m=NULL;
199         int ret=0;
200         size_t buf_len=0,i;
201
202         if (x->p)
203                 buf_len = (size_t)BN_num_bytes(x->p);
204         if (x->q)
205                 if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
206                         buf_len = i;
207         if (x->g)
208                 if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
209                         buf_len = i;
210         if (x->priv_key)
211                 if (buf_len < (i = (size_t)BN_num_bytes(x->priv_key)))
212                         buf_len = i;
213         if (x->pub_key)
214                 if (buf_len < (i = (size_t)BN_num_bytes(x->pub_key)))
215                         buf_len = i;
216
217         m=(unsigned char *)OPENSSL_malloc(buf_len+10);
218         if (m == NULL)
219                 {
220                 DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE);
221                 goto err;
222                 }
223
224         if (off)
225                 {
226                 if (off > 128) off=128;
227                 memset(str,' ',off);
228                 }
229         if (x->priv_key != NULL)
230                 {
231                 if (off && (BIO_write(bp,str,off) <= 0)) goto err;
232                 if (BIO_printf(bp,"Private-Key: (%d bit)\n",BN_num_bits(x->p))
233                         <= 0) goto err;
234                 }
235
236         if ((x->priv_key != NULL) && !print(bp,"priv:",x->priv_key,m,off))
237                 goto err;
238         if ((x->pub_key  != NULL) && !print(bp,"pub: ",x->pub_key,m,off))
239                 goto err;
240         if ((x->p != NULL) && !print(bp,"P:   ",x->p,m,off)) goto err;
241         if ((x->q != NULL) && !print(bp,"Q:   ",x->q,m,off)) goto err;
242         if ((x->g != NULL) && !print(bp,"G:   ",x->g,m,off)) goto err;
243         ret=1;
244 err:
245         if (m != NULL) OPENSSL_free(m);
246         return(ret);
247         }
248 #endif /* !OPENSSL_NO_DSA */
249
250 #ifndef OPENSSL_NO_EC
251 #ifndef OPENSSL_NO_FP_API
252 int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
253         {
254         BIO *b;
255         int ret;
256
257         if ((b=BIO_new(BIO_s_file())) == NULL)
258                 {
259                 ECerr(EC_F_ECPKPARAMETERS_PRINT_FP,ERR_R_BUF_LIB);
260                 return(0);
261                 }
262         BIO_set_fp(b, fp, BIO_NOCLOSE);
263         ret = ECPKParameters_print(b, x, off);
264         BIO_free(b);
265         return(ret);
266         }
267
268 int EC_KEY_print_fp(FILE *fp, const EC_KEY *x, int off)
269         {
270         BIO *b;
271         int ret;
272  
273         if ((b=BIO_new(BIO_s_file())) == NULL)
274                 {
275                 ECerr(EC_F_EC_KEY_PRINT_FP, ERR_R_BIO_LIB);
276                 return(0);
277                 }
278         BIO_set_fp(b, fp, BIO_NOCLOSE);
279         ret = EC_KEY_print(b, x, off);
280         BIO_free(b);
281         return(ret);
282         }
283 #endif
284
285 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off)
286         {
287         char str[128];
288         unsigned char *buffer=NULL;
289         size_t  buf_len=0, i;
290         int     ret=0, reason=ERR_R_BIO_LIB;
291         BN_CTX  *ctx=NULL;
292         EC_POINT *point=NULL;
293         BIGNUM  *p=NULL, *a=NULL, *b=NULL, *gen=NULL,
294                 *order=NULL, *cofactor=NULL;
295         const unsigned char *seed;
296         size_t  seed_len=0;
297         
298         static const char *gen_compressed = "Generator (compressed):";
299         static const char *gen_uncompressed = "Generator (uncompressed):";
300         static const char *gen_hybrid = "Generator (hybrid):";
301  
302         if (!x)
303                 {
304                 reason = ERR_R_PASSED_NULL_PARAMETER;
305                 goto err;
306                 }
307
308         if (EC_GROUP_get_asn1_flag(x))
309                 {
310                 /* the curve parameter are given by an asn1 OID */
311                 int nid;
312
313                 if (off)
314                         {
315                         if (off > 128)
316                                 off=128;
317                         memset(str, ' ', off);
318                         if (BIO_write(bp, str, off) <= 0)
319                                 goto err;
320                         }
321
322                 nid = EC_GROUP_get_nid(x);
323                 if (nid == 0)
324                         goto err;
325
326                 if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
327                         goto err;
328                 if (BIO_printf(bp, "\n") <= 0)
329                         goto err;
330                 }
331         else
332                 {
333                 /* explicit parameters */
334                 int is_char_two = 0;
335                 point_conversion_form_t form;
336                 int tmp_nid = EC_METHOD_get_field_type(EC_GROUP_method_of(x));
337
338                 if (tmp_nid == NID_X9_62_characteristic_two_field)
339                         is_char_two = 1;
340
341                 if ((p = BN_new()) == NULL || (a = BN_new()) == NULL ||
342                         (b = BN_new()) == NULL || (order = BN_new()) == NULL ||
343                         (cofactor = BN_new()) == NULL)
344                         {
345                         reason = ERR_R_MALLOC_FAILURE;
346                         goto err;
347                         }
348
349                 if (is_char_two)
350                         {
351                         if (!EC_GROUP_get_curve_GF2m(x, p, a, b, ctx))
352                                 {
353                                 reason = ERR_R_EC_LIB;
354                                 goto err;
355                                 }
356                         }
357                 else /* prime field */
358                         {
359                         if (!EC_GROUP_get_curve_GFp(x, p, a, b, ctx))
360                                 {
361                                 reason = ERR_R_EC_LIB;
362                                 goto err;
363                                 }
364                         }
365
366                 if ((point = EC_GROUP_get0_generator(x)) == NULL)
367                         {
368                         reason = ERR_R_EC_LIB;
369                         goto err;
370                         }
371                 if (!EC_GROUP_get_order(x, order, NULL) || 
372                         !EC_GROUP_get_cofactor(x, cofactor, NULL))
373                         {
374                         reason = ERR_R_EC_LIB;
375                         goto err;
376                         }
377                 
378                 form = EC_GROUP_get_point_conversion_form(x);
379
380                 if ((gen = EC_POINT_point2bn(x, point, 
381                                 form, NULL, ctx)) == NULL)
382                         {
383                         reason = ERR_R_EC_LIB;
384                         goto err;
385                         }
386
387                 buf_len = (size_t)BN_num_bytes(p);
388                 if (buf_len < (i = (size_t)BN_num_bytes(a)))
389                         buf_len = i;
390                 if (buf_len < (i = (size_t)BN_num_bytes(b)))
391                         buf_len = i;
392                 if (buf_len < (i = (size_t)BN_num_bytes(gen)))
393                         buf_len = i;
394                 if (buf_len < (i = (size_t)BN_num_bytes(order)))
395                         buf_len = i;
396                 if (buf_len < (i = (size_t)BN_num_bytes(cofactor))) 
397                         buf_len = i;
398
399                 if ((seed = EC_GROUP_get0_seed(x)) != NULL)
400                         seed_len = EC_GROUP_get_seed_len(x);
401
402                 buf_len += 10;
403                 if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
404                         {
405                         reason = ERR_R_MALLOC_FAILURE;
406                         goto err;
407                         }
408                 if (off)
409                         {
410                         if (off > 128) off=128;
411                         memset(str,' ',off);
412                         if (BIO_write(bp, str, off) <= 0)
413                                 goto err;
414                         }
415                 /* print the 'short name' of the field type */
416                 if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
417                         <= 0)
418                         goto err;  
419
420                 if (is_char_two)
421                         {
422                         /* print the 'short name' of the base type OID */
423                         int basis_type = EC_GROUP_get_basis_type(x);
424                         if (basis_type == 0)
425                                 goto err;
426
427                         if (off)
428                                 {
429                                 if (off > 128) off=128;
430                                 memset(str,' ',off);
431                                 if (BIO_write(bp, str, off) <= 0)
432                                         goto err;
433                                 }
434
435                         if (BIO_printf(bp, "Basis Type: %s\n", 
436                                 OBJ_nid2sn(basis_type)) <= 0)
437                                 goto err;
438
439                         /* print the polynomial */
440                         if ((p != NULL) && !print(bp, "Polynomial:", p, buffer,
441                                 off))
442                                 goto err;
443                         }
444                 else
445                         {
446                         if ((p != NULL) && !print(bp, "Prime:", p, buffer,off))
447                                 goto err;
448                         }
449                 if ((a != NULL) && !print(bp, "A:   ", a, buffer, off)) 
450                         goto err;
451                 if ((b != NULL) && !print(bp, "B:   ", b, buffer, off))
452                         goto err;
453                 if (form == POINT_CONVERSION_COMPRESSED)
454                         {
455                         if ((gen != NULL) && !print(bp, gen_compressed, gen,
456                                 buffer, off))
457                                 goto err;
458                         }
459                 else if (form == POINT_CONVERSION_UNCOMPRESSED)
460                         {
461                         if ((gen != NULL) && !print(bp, gen_uncompressed, gen,
462                                 buffer, off))
463                                 goto err;
464                         }
465                 else /* form == POINT_CONVERSION_HYBRID */
466                         {
467                         if ((gen != NULL) && !print(bp, gen_hybrid, gen,
468                                 buffer, off))
469                                 goto err;
470                         }
471                 if ((order != NULL) && !print(bp, "Order: ", order, 
472                         buffer, off)) goto err;
473                 if ((cofactor != NULL) && !print(bp, "Cofactor: ", cofactor, 
474                         buffer, off)) goto err;
475                 if (seed && !print_bin(bp, "Seed:", seed, seed_len, off))
476                         goto err;
477                 }
478         ret=1;
479 err:
480         if (!ret)
481                 ECerr(EC_F_ECPKPARAMETERS_PRINT, reason);
482         if (p) 
483                 BN_free(p);
484         if (a) 
485                 BN_free(a);
486         if (b)
487                 BN_free(b);
488         if (gen)
489                 BN_free(gen);
490         if (order)
491                 BN_free(order);
492         if (cofactor)
493                 BN_free(cofactor);
494         if (ctx)
495                 BN_CTX_free(ctx);
496         if (buffer != NULL) 
497                 OPENSSL_free(buffer);
498         return(ret);    
499         }
500
501 int EC_KEY_print(BIO *bp, const EC_KEY *x, int off)
502         {
503         char str[128];
504         unsigned char *buffer=NULL;
505         size_t  buf_len=0, i;
506         int     ret=0, reason=ERR_R_BIO_LIB;
507         BIGNUM  *pub_key=NULL;
508         BN_CTX  *ctx=NULL;
509  
510         if (!x || !x->group)
511                 {
512                 reason = ERR_R_PASSED_NULL_PARAMETER;
513                 goto err;
514                 }
515
516         if ((pub_key = EC_POINT_point2bn(x->group, x->pub_key,
517                 x->conv_form, NULL, ctx)) == NULL)
518                 {
519                 reason = ERR_R_EC_LIB;
520                 goto err;
521                 }
522
523         buf_len = (size_t)BN_num_bytes(pub_key);
524         if (x->priv_key)
525                 {
526                 if ((i = (size_t)BN_num_bytes(x->priv_key)) > buf_len)
527                         buf_len = i;
528                 }
529
530         buf_len += 10;
531         if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
532                 {
533                 reason = ERR_R_MALLOC_FAILURE;
534                 goto err;
535                 }
536         if (off)
537                 {
538                 if (off > 128) off=128;
539                 memset(str,' ',off);
540                 }
541         if (x->priv_key != NULL)
542                 {
543                 if (off && (BIO_write(bp, str, off) <= 0)) goto err;
544                 if (BIO_printf(bp, "Private-Key: (%d bit)\n", 
545                         BN_num_bits(x->priv_key)) <= 0) goto err;
546                 }
547   
548         if ((x->priv_key != NULL) && !print(bp, "priv:", x->priv_key, 
549                 buffer, off))
550                 goto err;
551         if ((pub_key != NULL) && !print(bp, "pub: ", pub_key,
552                 buffer, off))
553                 goto err;
554         if (!ECPKParameters_print(bp, x->group, off))
555                 goto err;
556         ret=1;
557 err:
558         if (!ret)
559                 ECerr(EC_F_EC_KEY_PRINT, reason);
560         if (pub_key) 
561                 BN_free(pub_key);
562         if (ctx)
563                 BN_CTX_free(ctx);
564         if (buffer != NULL)
565                 OPENSSL_free(buffer);
566         return(ret);
567         }
568 #endif /* OPENSSL_NO_EC */
569
570 static int print(BIO *bp, const char *number, BIGNUM *num, unsigned char *buf,
571              int off)
572         {
573         int n,i;
574         char str[128];
575         const char *neg;
576
577         if (num == NULL) return(1);
578         neg=(num->neg)?"-":"";
579         if (off)
580                 {
581                 if (off > 128) off=128;
582                 memset(str,' ',off);
583                 if (BIO_write(bp,str,off) <= 0) return(0);
584                 }
585
586         if (BN_is_zero(num))
587                 {
588                 if (BIO_printf(bp, "%s 0\n", number) <= 0)
589                         return 0;
590                 return 1;
591                 }
592
593         if (BN_num_bytes(num) <= BN_BYTES)
594                 {
595                 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
596                         (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
597                         <= 0) return(0);
598                 }
599         else
600                 {
601                 buf[0]=0;
602                 if (BIO_printf(bp,"%s%s",number,
603                         (neg[0] == '-')?" (Negative)":"") <= 0)
604                         return(0);
605                 n=BN_bn2bin(num,&buf[1]);
606         
607                 if (buf[1] & 0x80)
608                         n++;
609                 else    buf++;
610
611                 for (i=0; i<n; i++)
612                         {
613                         if ((i%15) == 0)
614                                 {
615                                 str[0]='\n';
616                                 memset(&(str[1]),' ',off+4);
617                                 if (BIO_write(bp,str,off+1+4) <= 0) return(0);
618                                 }
619                         if (BIO_printf(bp,"%02x%s",buf[i],((i+1) == n)?"":":")
620                                 <= 0) return(0);
621                         }
622                 if (BIO_write(bp,"\n",1) <= 0) return(0);
623                 }
624         return(1);
625         }
626
627 static int print_bin(BIO *fp, const char *name, const unsigned char *buf,
628                 size_t len, int off)
629         {
630         size_t i;
631         char str[128];
632
633         if (buf == NULL)
634                 return 1;
635         if (off)
636                 {
637                 if (off > 128)
638                         off=128;
639                 memset(str,' ',off);
640                 if (BIO_write(fp, str, off) <= 0)
641                         return 0;
642                 }
643
644         if (BIO_printf(fp,"%s", name) <= 0)
645                 return 0;
646
647         for (i=0; i<len; i++)
648                 {
649                 if ((i%15) == 0)
650                         {
651                         str[0]='\n';
652                         memset(&(str[1]),' ',off+4);
653                         if (BIO_write(fp, str, off+1+4) <= 0)
654                                 return 0;
655                         }
656                 if (BIO_printf(fp,"%02x%s",buf[i],((i+1) == len)?"":":") <= 0)
657                         return 0;
658                 }
659         if (BIO_write(fp,"\n",1) <= 0)
660                 return 0;
661
662         return 1;
663         }
664
665 #ifndef OPENSSL_NO_DH
666 #ifndef OPENSSL_NO_FP_API
667 int DHparams_print_fp(FILE *fp, const DH *x)
668         {
669         BIO *b;
670         int ret;
671
672         if ((b=BIO_new(BIO_s_file())) == NULL)
673                 {
674                 DHerr(DH_F_DHPARAMS_PRINT_FP,ERR_R_BUF_LIB);
675                 return(0);
676                 }
677         BIO_set_fp(b,fp,BIO_NOCLOSE);
678         ret=DHparams_print(b, x);
679         BIO_free(b);
680         return(ret);
681         }
682 #endif
683
684 int DHparams_print(BIO *bp, const DH *x)
685         {
686         unsigned char *m=NULL;
687         int reason=ERR_R_BUF_LIB,ret=0;
688         size_t buf_len=0, i;
689
690         if (x->p)
691                 buf_len = (size_t)BN_num_bytes(x->p);
692         if (x->g)
693                 if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
694                         buf_len = i;
695         m=(unsigned char *)OPENSSL_malloc(buf_len+10);
696         if (m == NULL)
697                 {
698                 reason=ERR_R_MALLOC_FAILURE;
699                 goto err;
700                 }
701
702         if (BIO_printf(bp,"Diffie-Hellman-Parameters: (%d bit)\n",
703                 BN_num_bits(x->p)) <= 0)
704                 goto err;
705         if (!print(bp,"prime:",x->p,m,4)) goto err;
706         if (!print(bp,"generator:",x->g,m,4)) goto err;
707         if (x->length != 0)
708                 {
709                 if (BIO_printf(bp,"    recommended-private-length: %d bits\n",
710                         (int)x->length) <= 0) goto err;
711                 }
712         ret=1;
713         if (0)
714                 {
715 err:
716                 DHerr(DH_F_DHPARAMS_PRINT,reason);
717                 }
718         if (m != NULL) OPENSSL_free(m);
719         return(ret);
720         }
721 #endif
722
723 #ifndef OPENSSL_NO_DSA
724 #ifndef OPENSSL_NO_FP_API
725 int DSAparams_print_fp(FILE *fp, const DSA *x)
726         {
727         BIO *b;
728         int ret;
729
730         if ((b=BIO_new(BIO_s_file())) == NULL)
731                 {
732                 DSAerr(DSA_F_DSAPARAMS_PRINT_FP,ERR_R_BUF_LIB);
733                 return(0);
734                 }
735         BIO_set_fp(b,fp,BIO_NOCLOSE);
736         ret=DSAparams_print(b, x);
737         BIO_free(b);
738         return(ret);
739         }
740 #endif
741
742 int DSAparams_print(BIO *bp, const DSA *x)
743         {
744         unsigned char *m=NULL;
745         int reason=ERR_R_BUF_LIB,ret=0;
746         size_t buf_len=0,i;
747
748         if (x->p)
749                 buf_len = (size_t)BN_num_bytes(x->p);
750         if (x->q)
751                 if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
752                         buf_len = i;
753         if (x->g)
754                 if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
755                         buf_len = i;
756         m=(unsigned char *)OPENSSL_malloc(buf_len+10);
757         if (m == NULL)
758                 {
759                 reason=ERR_R_MALLOC_FAILURE;
760                 goto err;
761                 }
762
763         if (BIO_printf(bp,"DSA-Parameters: (%d bit)\n",
764                 BN_num_bits(x->p)) <= 0)
765                 goto err;
766         if (!print(bp,"p:",x->p,m,4)) goto err;
767         if (!print(bp,"q:",x->q,m,4)) goto err;
768         if (!print(bp,"g:",x->g,m,4)) goto err;
769         ret=1;
770 err:
771         if (m != NULL) OPENSSL_free(m);
772         DSAerr(DSA_F_DSAPARAMS_PRINT,reason);
773         return(ret);
774         }
775
776 #endif /* !OPENSSL_NO_DSA */
777
778 #ifndef OPENSSL_NO_EC
779 #ifndef OPENSSL_NO_FP_API
780 int ECParameters_print_fp(FILE *fp, const EC_KEY *x)
781         {
782         BIO *b;
783         int ret;
784  
785         if ((b=BIO_new(BIO_s_file())) == NULL)
786                 {
787                 ECerr(EC_F_ECPARAMETERS_PRINT_FP, ERR_R_BIO_LIB);
788                 return(0);
789                 }
790         BIO_set_fp(b, fp, BIO_NOCLOSE);
791         ret = ECParameters_print(b, x);
792         BIO_free(b);
793         return(ret);
794         }
795 #endif
796
797 int ECParameters_print(BIO *bp, const EC_KEY *x)
798         {
799         int     reason=ERR_R_EC_LIB, ret=0;
800         BIGNUM  *order=NULL;
801  
802         if (!x || !x->group)
803                 {
804                 reason = ERR_R_PASSED_NULL_PARAMETER;;
805                 goto err;
806                 }
807
808         if ((order = BN_new()) == NULL)
809                 {
810                 reason = ERR_R_MALLOC_FAILURE;
811                 goto err;
812                 }
813
814         if (!EC_GROUP_get_order(x->group, order, NULL))
815                 {
816                 reason = ERR_R_EC_LIB;
817                 goto err;
818                 }
819  
820         if (BIO_printf(bp, "ECDSA-Parameters: (%d bit)\n", 
821                 BN_num_bits(order)) <= 0)
822                 goto err;
823         if (!ECPKParameters_print(bp, x->group, 4))
824                 goto err;
825         ret=1;
826 err:
827         if (order)
828                 BN_free(order);
829         ECerr(EC_F_ECPARAMETERS_PRINT, reason);
830         return(ret);
831         }
832   
833 #endif