fix ECDSA handling
[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 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/buffer.h>
62 #include <openssl/bn.h>
63 #ifndef OPENSSL_NO_RSA
64 #include <openssl/rsa.h>
65 #endif
66 #ifndef OPENSSL_NO_DH
67 #include <openssl/dh.h>
68 #endif
69 #ifndef OPENSSL_NO_DSA
70 #include <openssl/dsa.h>
71 #endif
72 #ifndef OPENSSL_NO_ECDSA
73 #include <openssl/ecdsa.h>
74 #endif
75
76 static int print(BIO *fp,const char *str,BIGNUM *num,
77                 unsigned char *buf,int off);
78 #ifndef OPENSSL_NO_RSA
79 #ifndef OPENSSL_NO_FP_API
80 int RSA_print_fp(FILE *fp, const RSA *x, int off)
81         {
82         BIO *b;
83         int ret;
84
85         if ((b=BIO_new(BIO_s_file())) == NULL)
86                 {
87                 RSAerr(RSA_F_RSA_PRINT_FP,ERR_R_BUF_LIB);
88                 return(0);
89                 }
90         BIO_set_fp(b,fp,BIO_NOCLOSE);
91         ret=RSA_print(b,x,off);
92         BIO_free(b);
93         return(ret);
94         }
95 #endif
96
97 int RSA_print(BIO *bp, const RSA *x, int off)
98         {
99         char str[128];
100         const char *s;
101         unsigned char *m=NULL;
102         int i,ret=0;
103
104         i=RSA_size(x);
105         m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10);
106         if (m == NULL)
107                 {
108                 RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE);
109                 goto err;
110                 }
111
112         if (off)
113                 {
114                 if (off > 128) off=128;
115                 memset(str,' ',off);
116                 }
117         if (x->d != NULL)
118                 {
119                 if (off && (BIO_write(bp,str,off) <= 0)) goto err;
120                 if (BIO_printf(bp,"Private-Key: (%d bit)\n",BN_num_bits(x->n))
121                         <= 0) goto err;
122                 }
123
124         if (x->d == NULL)
125                 sprintf(str,"Modulus (%d bit):",BN_num_bits(x->n));
126         else
127                 strcpy(str,"modulus:");
128         if (!print(bp,str,x->n,m,off)) goto err;
129         s=(x->d == NULL)?"Exponent:":"publicExponent:";
130         if (!print(bp,s,x->e,m,off)) goto err;
131         if (!print(bp,"privateExponent:",x->d,m,off)) goto err;
132         if (!print(bp,"prime1:",x->p,m,off)) goto err;
133         if (!print(bp,"prime2:",x->q,m,off)) goto err;
134         if (!print(bp,"exponent1:",x->dmp1,m,off)) goto err;
135         if (!print(bp,"exponent2:",x->dmq1,m,off)) goto err;
136         if (!print(bp,"coefficient:",x->iqmp,m,off)) goto err;
137         ret=1;
138 err:
139         if (m != NULL) OPENSSL_free(m);
140         return(ret);
141         }
142 #endif /* OPENSSL_NO_RSA */
143
144 #ifndef OPENSSL_NO_DSA
145 #ifndef OPENSSL_NO_FP_API
146 int DSA_print_fp(FILE *fp, const DSA *x, int off)
147         {
148         BIO *b;
149         int ret;
150
151         if ((b=BIO_new(BIO_s_file())) == NULL)
152                 {
153                 DSAerr(DSA_F_DSA_PRINT_FP,ERR_R_BUF_LIB);
154                 return(0);
155                 }
156         BIO_set_fp(b,fp,BIO_NOCLOSE);
157         ret=DSA_print(b,x,off);
158         BIO_free(b);
159         return(ret);
160         }
161 #endif
162
163 int DSA_print(BIO *bp, const DSA *x, int off)
164         {
165         char str[128];
166         unsigned char *m=NULL;
167         int i,ret=0;
168         BIGNUM *bn=NULL;
169
170         if (x->p != NULL)
171                 bn=x->p;
172         else if (x->priv_key != NULL)
173                 bn=x->priv_key;
174         else if (x->pub_key != NULL)
175                 bn=x->pub_key;
176                 
177         /* larger than needed but what the hell :-) */
178         if (bn != NULL)
179                 i=BN_num_bytes(bn)*2;
180         else
181                 i=256;
182         m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10);
183         if (m == NULL)
184                 {
185                 DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE);
186                 goto err;
187                 }
188
189         if (off)
190                 {
191                 if (off > 128) off=128;
192                 memset(str,' ',off);
193                 }
194         if (x->priv_key != NULL)
195                 {
196                 if (off && (BIO_write(bp,str,off) <= 0)) goto err;
197                 if (BIO_printf(bp,"Private-Key: (%d bit)\n",BN_num_bits(x->p))
198                         <= 0) goto err;
199                 }
200
201         if ((x->priv_key != NULL) && !print(bp,"priv:",x->priv_key,m,off))
202                 goto err;
203         if ((x->pub_key  != NULL) && !print(bp,"pub: ",x->pub_key,m,off))
204                 goto err;
205         if ((x->p != NULL) && !print(bp,"P:   ",x->p,m,off)) goto err;
206         if ((x->q != NULL) && !print(bp,"Q:   ",x->q,m,off)) goto err;
207         if ((x->g != NULL) && !print(bp,"G:   ",x->g,m,off)) goto err;
208         ret=1;
209 err:
210         if (m != NULL) OPENSSL_free(m);
211         return(ret);
212         }
213 #endif /* !OPENSSL_NO_DSA */
214
215 #ifndef OPENSSL_NO_ECDSA
216 #ifndef OPENSSL_NO_FP_API
217 int ECDSA_print_fp(FILE *fp, const ECDSA *x, int off)
218 {
219         BIO *b;
220         int ret;
221  
222         if ((b=BIO_new(BIO_s_file())) == NULL)
223         {
224                 ECDSAerr(ECDSA_F_ECDSA_PRINT_FP, ERR_R_BIO_LIB);
225                 return(0);
226         }
227         BIO_set_fp(b, fp, BIO_NOCLOSE);
228         ret = ECDSA_print(b, x, off);
229         BIO_free(b);
230         return(ret);
231 }
232 #endif
233
234 int ECDSA_print(BIO *bp, const ECDSA *x, int off)
235         {
236         char str[128];
237         unsigned char *buffer=NULL;
238         int     i, buf_len=0, ret=0, reason=ERR_R_BIO_LIB;
239         BIGNUM  *tmp_1=NULL, *tmp_2=NULL, *tmp_3=NULL,
240                 *tmp_4=NULL, *tmp_5=NULL, *tmp_6=NULL,
241                 *tmp_7=NULL;
242         BN_CTX  *ctx=NULL;
243         EC_POINT *point=NULL;
244  
245         /* TODO: fields other than prime fields */
246        
247         if (!x || !x->group)
248                 {
249                 reason = ECDSA_R_MISSING_PARAMETERS;
250                 goto err;
251                 }
252         if ((tmp_1 = BN_new()) == NULL || (tmp_2 = BN_new()) == NULL ||
253                 (tmp_3 = BN_new()) == NULL || (ctx = BN_CTX_new()) == NULL ||
254                 (tmp_6 = BN_new()) == NULL || (tmp_7 = BN_new()) == NULL)
255                 {
256                 reason = ERR_R_MALLOC_FAILURE;
257                 goto err;
258                 }
259         if (!EC_GROUP_get_curve_GFp(x->group, tmp_1, tmp_2, tmp_3, ctx))
260                 {
261                 reason = ERR_R_EC_LIB;
262                 goto err;
263                 }
264         if ((point = EC_GROUP_get0_generator(x->group)) == NULL)
265                 {
266                 reason = ERR_R_EC_LIB;
267                 goto err;
268                 }
269         if (!EC_GROUP_get_order(x->group, tmp_6, NULL) || !EC_GROUP_get_cofactor(x->group, tmp_7, NULL))
270                 {
271                 reason = ERR_R_EC_LIB;
272                 goto err;
273                 }
274         if ((buf_len = EC_POINT_point2oct(x->group, point, ECDSA_get_conversion_form(x), NULL, 0, ctx)) == 0)
275                 {
276                 reason = ECDSA_R_UNEXPECTED_PARAMETER_LENGTH;
277                 goto err;
278                 }
279         if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
280                 {
281                 reason = ERR_R_MALLOC_FAILURE;
282                 goto err;
283                 }
284         if (!EC_POINT_point2oct(x->group, point, ECDSA_get_conversion_form(x), 
285                                 buffer, buf_len, ctx)) goto err;
286         if ((tmp_4 = BN_bin2bn(buffer, buf_len, NULL)) == NULL)
287                 {
288                 reason = ERR_R_BN_LIB;
289                 goto err;
290                 }
291         if ((i = EC_POINT_point2oct(x->group, x->pub_key, ECDSA_get_conversion_form(x), NULL, 0, ctx)) == 0)
292                 {
293                 reason = ECDSA_R_UNEXPECTED_PARAMETER_LENGTH;
294                 goto err;
295                 }
296         if (i > buf_len && (buffer = OPENSSL_realloc(buffer, i)) == NULL)
297                 {
298                 reason = ERR_R_MALLOC_FAILURE;
299                 buf_len = i;
300                 goto err;
301                 }
302         if (!EC_POINT_point2oct(x->group, x->pub_key, ECDSA_get_conversion_form(x), 
303                                 buffer, buf_len, ctx))
304                 {
305                 reason = ERR_R_EC_LIB;
306                 goto err;
307                 }
308         if ((tmp_5 = BN_bin2bn(buffer, buf_len, NULL)) == NULL)
309                 {
310                 reason = ERR_R_BN_LIB;
311                 goto err;
312                 }
313         if (tmp_1 != NULL)
314                 i = BN_num_bytes(tmp_1)*2;
315         else
316                 i=256;
317         if ((i + 10) > buf_len && (buffer = OPENSSL_realloc(buffer, i+10)) == NULL)
318                 {
319                 reason = ERR_R_MALLOC_FAILURE;
320                 buf_len = i;
321                 goto err;
322                 }
323         if (off)
324                 {
325                 if (off > 128) off=128;
326                 memset(str,' ',off);
327                 }
328         if (x->priv_key != NULL)
329                 {
330                 if (off && (BIO_write(bp, str, off) <= 0)) goto err;
331                 if (BIO_printf(bp, "Private-Key: (%d bit)\n", BN_num_bits(tmp_1)) <= 0) goto err;
332                 }
333   
334         if ((x->priv_key != NULL) && !print(bp, "priv:", x->priv_key, buffer, off)) goto err;
335         if ((tmp_5 != NULL) && !print(bp, "pub: ", tmp_5, buffer, off)) goto err;
336         if ((tmp_1 != NULL) && !print(bp, "P:   ", tmp_1, buffer, off)) goto err;
337         if ((tmp_2 != NULL) && !print(bp, "A:   ", tmp_2, buffer, off)) goto err;
338         if ((tmp_3 != NULL) && !print(bp, "B:   ", tmp_3, buffer, off)) goto err;
339         if ((tmp_4 != NULL) && !print(bp, "Gen: ", tmp_4, buffer, off)) goto err;
340         if ((tmp_6 != NULL) && !print(bp, "Order: ", tmp_6, buffer, off)) goto err;
341         if ((tmp_7 != NULL) && !print(bp, "Cofactor: ", tmp_7, buffer, off)) goto err;
342         ret=1;
343 err:
344         if (!ret)
345                 ECDSAerr(ECDSA_F_ECDSA_PRINT, reason);
346         if (tmp_1) BN_free(tmp_1);
347         if (tmp_2) BN_free(tmp_2);
348         if (tmp_3) BN_free(tmp_3);
349         if (tmp_4) BN_free(tmp_4);
350         if (tmp_5) BN_free(tmp_5);
351         if (tmp_6) BN_free(tmp_6);
352         if (tmp_7) BN_free(tmp_7);
353         if (ctx)   BN_CTX_free(ctx);
354         if (buffer != NULL) OPENSSL_free(buffer);
355         return(ret);
356         }
357 #endif
358
359 static int print(BIO *bp, const char *number, BIGNUM *num, unsigned char *buf,
360              int off)
361         {
362         int n,i;
363         char str[128];
364         const char *neg;
365
366         if (num == NULL) return(1);
367         neg=(num->neg)?"-":"";
368         if (off)
369                 {
370                 if (off > 128) off=128;
371                 memset(str,' ',off);
372                 if (BIO_write(bp,str,off) <= 0) return(0);
373                 }
374
375         if (BN_num_bytes(num) <= BN_BYTES)
376                 {
377                 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
378                         (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
379                         <= 0) return(0);
380                 }
381         else
382                 {
383                 buf[0]=0;
384                 if (BIO_printf(bp,"%s%s",number,
385                         (neg[0] == '-')?" (Negative)":"") <= 0)
386                         return(0);
387                 n=BN_bn2bin(num,&buf[1]);
388         
389                 if (buf[1] & 0x80)
390                         n++;
391                 else    buf++;
392
393                 for (i=0; i<n; i++)
394                         {
395                         if ((i%15) == 0)
396                                 {
397                                 str[0]='\n';
398                                 memset(&(str[1]),' ',off+4);
399                                 if (BIO_write(bp,str,off+1+4) <= 0) return(0);
400                                 }
401                         if (BIO_printf(bp,"%02x%s",buf[i],((i+1) == n)?"":":")
402                                 <= 0) return(0);
403                         }
404                 if (BIO_write(bp,"\n",1) <= 0) return(0);
405                 }
406         return(1);
407         }
408
409 #ifndef OPENSSL_NO_DH
410 #ifndef OPENSSL_NO_FP_API
411 int DHparams_print_fp(FILE *fp, const DH *x)
412         {
413         BIO *b;
414         int ret;
415
416         if ((b=BIO_new(BIO_s_file())) == NULL)
417                 {
418                 DHerr(DH_F_DHPARAMS_PRINT_FP,ERR_R_BUF_LIB);
419                 return(0);
420                 }
421         BIO_set_fp(b,fp,BIO_NOCLOSE);
422         ret=DHparams_print(b, x);
423         BIO_free(b);
424         return(ret);
425         }
426 #endif
427
428 int DHparams_print(BIO *bp, const DH *x)
429         {
430         unsigned char *m=NULL;
431         int reason=ERR_R_BUF_LIB,i,ret=0;
432
433         i=BN_num_bytes(x->p);
434         m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10);
435         if (m == NULL)
436                 {
437                 reason=ERR_R_MALLOC_FAILURE;
438                 goto err;
439                 }
440
441         if (BIO_printf(bp,"Diffie-Hellman-Parameters: (%d bit)\n",
442                 BN_num_bits(x->p)) <= 0)
443                 goto err;
444         if (!print(bp,"prime:",x->p,m,4)) goto err;
445         if (!print(bp,"generator:",x->g,m,4)) goto err;
446         if (x->length != 0)
447                 {
448                 if (BIO_printf(bp,"    recommended-private-length: %d bits\n",
449                         (int)x->length) <= 0) goto err;
450                 }
451         ret=1;
452         if (0)
453                 {
454 err:
455                 DHerr(DH_F_DHPARAMS_PRINT,reason);
456                 }
457         if (m != NULL) OPENSSL_free(m);
458         return(ret);
459         }
460 #endif
461
462 #ifndef OPENSSL_NO_DSA
463 #ifndef OPENSSL_NO_FP_API
464 int DSAparams_print_fp(FILE *fp, const DSA *x)
465         {
466         BIO *b;
467         int ret;
468
469         if ((b=BIO_new(BIO_s_file())) == NULL)
470                 {
471                 DSAerr(DSA_F_DSAPARAMS_PRINT_FP,ERR_R_BUF_LIB);
472                 return(0);
473                 }
474         BIO_set_fp(b,fp,BIO_NOCLOSE);
475         ret=DSAparams_print(b, x);
476         BIO_free(b);
477         return(ret);
478         }
479 #endif
480
481 int DSAparams_print(BIO *bp, const DSA *x)
482         {
483         unsigned char *m=NULL;
484         int reason=ERR_R_BUF_LIB,i,ret=0;
485
486         i=BN_num_bytes(x->p);
487         m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10);
488         if (m == NULL)
489                 {
490                 reason=ERR_R_MALLOC_FAILURE;
491                 goto err;
492                 }
493
494         if (BIO_printf(bp,"DSA-Parameters: (%d bit)\n",
495                 BN_num_bits(x->p)) <= 0)
496                 goto err;
497         if (!print(bp,"p:",x->p,m,4)) goto err;
498         if (!print(bp,"q:",x->q,m,4)) goto err;
499         if (!print(bp,"g:",x->g,m,4)) goto err;
500         ret=1;
501 err:
502         if (m != NULL) OPENSSL_free(m);
503         DSAerr(DSA_F_DSAPARAMS_PRINT,reason);
504         return(ret);
505         }
506
507 #endif /* !OPENSSL_NO_DSA */
508
509 #ifndef OPENSSL_NO_ECDSA
510 #ifndef OPENSSL_NO_FP_API
511 int ECDSAParameters_print_fp(FILE *fp, const ECDSA *x)
512         {
513         BIO *b;
514         int ret;
515  
516         if ((b=BIO_new(BIO_s_file())) == NULL)
517         {
518                 ECDSAerr(ECDSA_F_ECDSAPARAMETERS_PRINT_FP, ERR_R_BIO_LIB);
519                 return(0);
520         }
521         BIO_set_fp(b, fp, BIO_NOCLOSE);
522         ret = ECDSAParameters_print(b, x);
523         BIO_free(b);
524         return(ret);
525         }
526 #endif
527
528 int ECDSAParameters_print(BIO *bp, const ECDSA *x)
529        {
530        unsigned char *buffer=NULL;
531        int     buf_len;
532        int     reason=ERR_R_EC_LIB, i, ret=0;
533        BIGNUM  *tmp_1=NULL, *tmp_2=NULL, *tmp_3=NULL, *tmp_4=NULL,
534                *tmp_5=NULL, *tmp_6=NULL;
535        BN_CTX  *ctx=NULL;
536        EC_POINT *point=NULL;
537  
538        /* TODO: fields other than prime fields */
539        if (!x || !x->group)
540        {
541                 reason = ECDSA_R_MISSING_PARAMETERS;
542                 goto err;
543        }
544        if ((tmp_1 = BN_new()) == NULL || (tmp_2 = BN_new()) == NULL ||
545            (tmp_3 = BN_new()) == NULL || (tmp_5 = BN_new()) == NULL ||
546            (tmp_6 = BN_new()) == NULL || (ctx = BN_CTX_new()) == NULL)
547        {
548                 reason = ERR_R_MALLOC_FAILURE;
549                 goto err;
550         }
551         if (!EC_GROUP_get_curve_GFp(x->group, tmp_1, tmp_2, tmp_3, ctx)) goto err;
552         if ((point = EC_GROUP_get0_generator(x->group)) == NULL) goto err;
553         if (!EC_GROUP_get_order(x->group, tmp_5, ctx)) goto err;
554         if (!EC_GROUP_get_cofactor(x->group, tmp_6, ctx)) goto err;     
555         buf_len = EC_POINT_point2oct(x->group, point, ECDSA_get_conversion_form(x), NULL, 0, ctx);
556         if (!buf_len || (buffer = OPENSSL_malloc(buf_len)) == NULL)
557         {
558                 reason = ERR_R_MALLOC_FAILURE;
559                 goto err;
560         }
561         if (!EC_POINT_point2oct(x->group, point, ECDSA_get_conversion_form(x), buffer, buf_len, ctx))
562         {
563                 reason = ERR_R_EC_LIB;
564                 goto err;
565         }
566         if ((tmp_4 = BN_bin2bn(buffer, buf_len, NULL)) == NULL)
567         {
568                 reason = ERR_R_BN_LIB;
569                 goto err;
570         }
571   
572         i = BN_num_bits(tmp_1) + 10;
573         if (i > buf_len && (buffer = OPENSSL_realloc(buffer, i)) == NULL)
574         {
575                 reason=ERR_R_MALLOC_FAILURE;
576                 goto err;
577         }
578  
579         if (BIO_printf(bp, "ECDSA-Parameters: (%d bit)\n", BN_num_bits(tmp_1)) <= 0) goto err;
580         if (!print(bp, "Prime p:", tmp_1, buffer, 4)) goto err;
581         if (!print(bp, "Curve a:", tmp_2, buffer, 4)) goto err;
582         if (!print(bp, "Curve b:", tmp_3, buffer, 4)) goto err;
583         if (!print(bp, "Generator (compressed):", tmp_4, buffer, 4)) goto err; 
584         if (!print(bp, "Order:", tmp_5, buffer, 4)) goto err;
585         if (!print(bp, "Cofactor:", tmp_6, buffer, 4)) goto err;
586         ret=1;
587 err:
588         if (tmp_1)  BN_free(tmp_1);
589         if (tmp_2)  BN_free(tmp_2);
590         if (tmp_3)  BN_free(tmp_3);
591         if (tmp_4)  BN_free(tmp_4);
592         if (tmp_5)  BN_free(tmp_5);
593         if (tmp_6)  BN_free(tmp_6);
594         if (ctx)    BN_CTX_free(ctx);
595         if (buffer) OPENSSL_free(buffer);
596         ECDSAerr(ECDSA_F_ECDSAPARAMETERS_PRINT, reason);
597         return(ret);
598         }
599   
600 #endif