os/ossrv/ssl/libcrypto/src/crypto/asn1/t_pkey.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* crypto/asn1/t_pkey.c */
sl@0
     2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
sl@0
     3
 * All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This package is an SSL implementation written
sl@0
     6
 * by Eric Young (eay@cryptsoft.com).
sl@0
     7
 * The implementation was written so as to conform with Netscapes SSL.
sl@0
     8
 * 
sl@0
     9
 * This library is free for commercial and non-commercial use as long as
sl@0
    10
 * the following conditions are aheared to.  The following conditions
sl@0
    11
 * apply to all code found in this distribution, be it the RC4, RSA,
sl@0
    12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
sl@0
    13
 * included with this distribution is covered by the same copyright terms
sl@0
    14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
sl@0
    15
 * 
sl@0
    16
 * Copyright remains Eric Young's, and as such any Copyright notices in
sl@0
    17
 * the code are not to be removed.
sl@0
    18
 * If this package is used in a product, Eric Young should be given attribution
sl@0
    19
 * as the author of the parts of the library used.
sl@0
    20
 * This can be in the form of a textual message at program startup or
sl@0
    21
 * in documentation (online or textual) provided with the package.
sl@0
    22
 * 
sl@0
    23
 * Redistribution and use in source and binary forms, with or without
sl@0
    24
 * modification, are permitted provided that the following conditions
sl@0
    25
 * are met:
sl@0
    26
 * 1. Redistributions of source code must retain the copyright
sl@0
    27
 *    notice, this list of conditions and the following disclaimer.
sl@0
    28
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    29
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    30
 *    documentation and/or other materials provided with the distribution.
sl@0
    31
 * 3. All advertising materials mentioning features or use of this software
sl@0
    32
 *    must display the following acknowledgement:
sl@0
    33
 *    "This product includes cryptographic software written by
sl@0
    34
 *     Eric Young (eay@cryptsoft.com)"
sl@0
    35
 *    The word 'cryptographic' can be left out if the rouines from the library
sl@0
    36
 *    being used are not cryptographic related :-).
sl@0
    37
 * 4. If you include any Windows specific code (or a derivative thereof) from 
sl@0
    38
 *    the apps directory (application code) you must include an acknowledgement:
sl@0
    39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
sl@0
    40
 * 
sl@0
    41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
sl@0
    42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
sl@0
    45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    51
 * SUCH DAMAGE.
sl@0
    52
 * 
sl@0
    53
 * The licence and distribution terms for any publically available version or
sl@0
    54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
sl@0
    55
 * copied and put under another distribution licence
sl@0
    56
 * [including the GNU Public Licence.]
sl@0
    57
 */
sl@0
    58
/* ====================================================================
sl@0
    59
 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
sl@0
    60
 * Binary polynomial ECC support in OpenSSL originally developed by 
sl@0
    61
 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
sl@0
    62
 */
sl@0
    63
/*
sl@0
    64
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
    65
 */
sl@0
    66
#include <stdio.h>
sl@0
    67
#include "cryptlib.h"
sl@0
    68
#include <openssl/objects.h>
sl@0
    69
#include <openssl/buffer.h>
sl@0
    70
#include <openssl/bn.h>
sl@0
    71
#ifndef OPENSSL_NO_RSA
sl@0
    72
#include <openssl/rsa.h>
sl@0
    73
#endif
sl@0
    74
#ifndef OPENSSL_NO_DH
sl@0
    75
#include <openssl/dh.h>
sl@0
    76
#endif
sl@0
    77
#ifndef OPENSSL_NO_DSA
sl@0
    78
#include <openssl/dsa.h>
sl@0
    79
#endif
sl@0
    80
#ifndef OPENSSL_NO_EC
sl@0
    81
#include <openssl/ec.h>
sl@0
    82
#endif
sl@0
    83
sl@0
    84
static int print(BIO *fp,const char *str, const BIGNUM *num,
sl@0
    85
		unsigned char *buf,int off);
sl@0
    86
#ifndef OPENSSL_NO_EC
sl@0
    87
static int print_bin(BIO *fp, const char *str, const unsigned char *num,
sl@0
    88
		size_t len, int off);
sl@0
    89
#endif
sl@0
    90
#ifndef OPENSSL_NO_RSA
sl@0
    91
#ifndef OPENSSL_NO_FP_API
sl@0
    92
EXPORT_C int RSA_print_fp(FILE *fp, const RSA *x, int off)
sl@0
    93
	{
sl@0
    94
	BIO *b;
sl@0
    95
	int ret;
sl@0
    96
sl@0
    97
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
    98
		{
sl@0
    99
		RSAerr(RSA_F_RSA_PRINT_FP,ERR_R_BUF_LIB);
sl@0
   100
		return(0);
sl@0
   101
		}
sl@0
   102
	BIO_set_fp(b,fp,BIO_NOCLOSE);
sl@0
   103
	ret=RSA_print(b,x,off);
sl@0
   104
	BIO_free(b);
sl@0
   105
	return(ret);
sl@0
   106
	}
sl@0
   107
#endif
sl@0
   108
sl@0
   109
EXPORT_C int RSA_print(BIO *bp, const RSA *x, int off)
sl@0
   110
	{
sl@0
   111
#ifndef SYMBAIN		
sl@0
   112
	char str[128];
sl@0
   113
#else
sl@0
   114
  char str[50];
sl@0
   115
#endif	
sl@0
   116
		const char *s;
sl@0
   117
	unsigned char *m=NULL;
sl@0
   118
	int ret=0, mod_len = 0;
sl@0
   119
	size_t buf_len=0, i;
sl@0
   120
sl@0
   121
	if (x->n)
sl@0
   122
		buf_len = (size_t)BN_num_bytes(x->n);
sl@0
   123
	if (x->e)
sl@0
   124
		if (buf_len < (i = (size_t)BN_num_bytes(x->e)))
sl@0
   125
			buf_len = i;
sl@0
   126
	if (x->d)
sl@0
   127
		if (buf_len < (i = (size_t)BN_num_bytes(x->d)))
sl@0
   128
			buf_len = i;
sl@0
   129
	if (x->p)
sl@0
   130
		if (buf_len < (i = (size_t)BN_num_bytes(x->p)))
sl@0
   131
			buf_len = i;
sl@0
   132
	if (x->q)
sl@0
   133
		if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
sl@0
   134
			buf_len = i;
sl@0
   135
	if (x->dmp1)
sl@0
   136
		if (buf_len < (i = (size_t)BN_num_bytes(x->dmp1)))
sl@0
   137
			buf_len = i;
sl@0
   138
	if (x->dmq1)
sl@0
   139
		if (buf_len < (i = (size_t)BN_num_bytes(x->dmq1)))
sl@0
   140
			buf_len = i;
sl@0
   141
	if (x->iqmp)
sl@0
   142
		if (buf_len < (i = (size_t)BN_num_bytes(x->iqmp)))
sl@0
   143
			buf_len = i;
sl@0
   144
sl@0
   145
	m=(unsigned char *)OPENSSL_malloc(buf_len+10);
sl@0
   146
	if (m == NULL)
sl@0
   147
		{
sl@0
   148
		RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE);
sl@0
   149
		goto err;
sl@0
   150
		}
sl@0
   151
sl@0
   152
	if (x->n != NULL)
sl@0
   153
		mod_len = BN_num_bits(x->n);
sl@0
   154
sl@0
   155
	if (x->d != NULL)
sl@0
   156
		{
sl@0
   157
		if(!BIO_indent(bp,off,128))
sl@0
   158
		   goto err;
sl@0
   159
		if (BIO_printf(bp,"Private-Key: (%d bit)\n", mod_len)
sl@0
   160
			<= 0) goto err;
sl@0
   161
		}
sl@0
   162
sl@0
   163
	if (x->d == NULL)
sl@0
   164
		BIO_snprintf(str,sizeof str,"Modulus (%d bit):", mod_len);
sl@0
   165
	else
sl@0
   166
		BUF_strlcpy(str,"modulus:",sizeof str);
sl@0
   167
	if (!print(bp,str,x->n,m,off)) goto err;
sl@0
   168
	s=(x->d == NULL)?"Exponent:":"publicExponent:";
sl@0
   169
	if ((x->e != NULL) && !print(bp,s,x->e,m,off))
sl@0
   170
		goto err;
sl@0
   171
	if ((x->d != NULL) && !print(bp,"privateExponent:",x->d,m,off))
sl@0
   172
		goto err;
sl@0
   173
	if ((x->p != NULL) && !print(bp,"prime1:",x->p,m,off))
sl@0
   174
		goto err;
sl@0
   175
	if ((x->q != NULL) && !print(bp,"prime2:",x->q,m,off))
sl@0
   176
		goto err;
sl@0
   177
	if ((x->dmp1 != NULL) && !print(bp,"exponent1:",x->dmp1,m,off))
sl@0
   178
		goto err;
sl@0
   179
	if ((x->dmq1 != NULL) && !print(bp,"exponent2:",x->dmq1,m,off))
sl@0
   180
		goto err;
sl@0
   181
	if ((x->iqmp != NULL) && !print(bp,"coefficient:",x->iqmp,m,off))
sl@0
   182
		goto err;
sl@0
   183
	ret=1;
sl@0
   184
err:
sl@0
   185
	if (m != NULL) OPENSSL_free(m);
sl@0
   186
	return(ret);
sl@0
   187
sl@0
   188
	}
sl@0
   189
#endif /* OPENSSL_NO_RSA */
sl@0
   190
sl@0
   191
#ifndef OPENSSL_NO_DSA
sl@0
   192
#ifndef OPENSSL_NO_FP_API
sl@0
   193
EXPORT_C int DSA_print_fp(FILE *fp, const DSA *x, int off)
sl@0
   194
	{
sl@0
   195
	BIO *b;
sl@0
   196
	int ret;
sl@0
   197
sl@0
   198
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   199
		{
sl@0
   200
		DSAerr(DSA_F_DSA_PRINT_FP,ERR_R_BUF_LIB);
sl@0
   201
		return(0);
sl@0
   202
		}
sl@0
   203
	BIO_set_fp(b,fp,BIO_NOCLOSE);
sl@0
   204
	ret=DSA_print(b,x,off);
sl@0
   205
	BIO_free(b);
sl@0
   206
	return(ret);
sl@0
   207
	}
sl@0
   208
#endif
sl@0
   209
sl@0
   210
EXPORT_C int DSA_print(BIO *bp, const DSA *x, int off)
sl@0
   211
	{
sl@0
   212
	unsigned char *m=NULL;
sl@0
   213
	int ret=0;
sl@0
   214
	size_t buf_len=0,i;
sl@0
   215
sl@0
   216
	if (x->p)
sl@0
   217
		buf_len = (size_t)BN_num_bytes(x->p);
sl@0
   218
	else
sl@0
   219
		{
sl@0
   220
		DSAerr(DSA_F_DSA_PRINT,DSA_R_MISSING_PARAMETERS);
sl@0
   221
		goto err;
sl@0
   222
		}
sl@0
   223
	if (x->q)
sl@0
   224
		if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
sl@0
   225
			buf_len = i;
sl@0
   226
	if (x->g)
sl@0
   227
		if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
sl@0
   228
			buf_len = i;
sl@0
   229
	if (x->priv_key)
sl@0
   230
		if (buf_len < (i = (size_t)BN_num_bytes(x->priv_key)))
sl@0
   231
			buf_len = i;
sl@0
   232
	if (x->pub_key)
sl@0
   233
		if (buf_len < (i = (size_t)BN_num_bytes(x->pub_key)))
sl@0
   234
			buf_len = i;
sl@0
   235
sl@0
   236
	m=(unsigned char *)OPENSSL_malloc(buf_len+10);
sl@0
   237
	if (m == NULL)
sl@0
   238
		{
sl@0
   239
		DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE);
sl@0
   240
		goto err;
sl@0
   241
		}
sl@0
   242
sl@0
   243
	if (x->priv_key != NULL)
sl@0
   244
		{
sl@0
   245
		if(!BIO_indent(bp,off,128))
sl@0
   246
		   goto err;
sl@0
   247
		if (BIO_printf(bp,"Private-Key: (%d bit)\n",BN_num_bits(x->p))
sl@0
   248
			<= 0) goto err;
sl@0
   249
		}
sl@0
   250
sl@0
   251
	if ((x->priv_key != NULL) && !print(bp,"priv:",x->priv_key,m,off))
sl@0
   252
		goto err;
sl@0
   253
	if ((x->pub_key  != NULL) && !print(bp,"pub: ",x->pub_key,m,off))
sl@0
   254
		goto err;
sl@0
   255
	if ((x->p != NULL) && !print(bp,"P:   ",x->p,m,off)) goto err;
sl@0
   256
	if ((x->q != NULL) && !print(bp,"Q:   ",x->q,m,off)) goto err;
sl@0
   257
	if ((x->g != NULL) && !print(bp,"G:   ",x->g,m,off)) goto err;
sl@0
   258
	ret=1;
sl@0
   259
err:
sl@0
   260
	if (m != NULL) OPENSSL_free(m);
sl@0
   261
	return(ret);
sl@0
   262
	}
sl@0
   263
#endif /* !OPENSSL_NO_DSA */
sl@0
   264
sl@0
   265
#ifndef OPENSSL_NO_EC
sl@0
   266
#ifndef OPENSSL_NO_FP_API
sl@0
   267
EXPORT_C int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
sl@0
   268
	{
sl@0
   269
	BIO *b;
sl@0
   270
	int ret;
sl@0
   271
sl@0
   272
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   273
		{
sl@0
   274
		ECerr(EC_F_ECPKPARAMETERS_PRINT_FP,ERR_R_BUF_LIB);
sl@0
   275
		return(0);
sl@0
   276
		}
sl@0
   277
	BIO_set_fp(b, fp, BIO_NOCLOSE);
sl@0
   278
	ret = ECPKParameters_print(b, x, off);
sl@0
   279
	BIO_free(b);
sl@0
   280
	return(ret);
sl@0
   281
	}
sl@0
   282
sl@0
   283
EXPORT_C int EC_KEY_print_fp(FILE *fp, const EC_KEY *x, int off)
sl@0
   284
	{
sl@0
   285
	BIO *b;
sl@0
   286
	int ret;
sl@0
   287
 
sl@0
   288
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   289
		{
sl@0
   290
		ECerr(EC_F_EC_KEY_PRINT_FP, ERR_R_BIO_LIB);
sl@0
   291
		return(0);
sl@0
   292
		}
sl@0
   293
	BIO_set_fp(b, fp, BIO_NOCLOSE);
sl@0
   294
	ret = EC_KEY_print(b, x, off);
sl@0
   295
	BIO_free(b);
sl@0
   296
	return(ret);
sl@0
   297
	}
sl@0
   298
#endif
sl@0
   299
sl@0
   300
EXPORT_C int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off)
sl@0
   301
	{
sl@0
   302
	unsigned char *buffer=NULL;
sl@0
   303
	size_t	buf_len=0, i;
sl@0
   304
	int     ret=0, reason=ERR_R_BIO_LIB;
sl@0
   305
	BN_CTX  *ctx=NULL;
sl@0
   306
	const EC_POINT *point=NULL;
sl@0
   307
	BIGNUM	*p=NULL, *a=NULL, *b=NULL, *gen=NULL,
sl@0
   308
		*order=NULL, *cofactor=NULL;
sl@0
   309
	const unsigned char *seed;
sl@0
   310
	size_t	seed_len=0;
sl@0
   311
	
sl@0
   312
	static const char *gen_compressed = "Generator (compressed):";
sl@0
   313
	static const char *gen_uncompressed = "Generator (uncompressed):";
sl@0
   314
	static const char *gen_hybrid = "Generator (hybrid):";
sl@0
   315
 
sl@0
   316
	if (!x)
sl@0
   317
		{
sl@0
   318
		reason = ERR_R_PASSED_NULL_PARAMETER;
sl@0
   319
		goto err;
sl@0
   320
		}
sl@0
   321
sl@0
   322
	if (EC_GROUP_get_asn1_flag(x))
sl@0
   323
		{
sl@0
   324
		/* the curve parameter are given by an asn1 OID */
sl@0
   325
		int nid;
sl@0
   326
sl@0
   327
		if (!BIO_indent(bp, off, 128))
sl@0
   328
			goto err;
sl@0
   329
sl@0
   330
		nid = EC_GROUP_get_curve_name(x);
sl@0
   331
		if (nid == 0)
sl@0
   332
			goto err;
sl@0
   333
sl@0
   334
		if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
sl@0
   335
			goto err;
sl@0
   336
		if (BIO_printf(bp, "\n") <= 0)
sl@0
   337
			goto err;
sl@0
   338
		}
sl@0
   339
	else
sl@0
   340
		{
sl@0
   341
		/* explicit parameters */
sl@0
   342
		int is_char_two = 0;
sl@0
   343
		point_conversion_form_t form;
sl@0
   344
		int tmp_nid = EC_METHOD_get_field_type(EC_GROUP_method_of(x));
sl@0
   345
sl@0
   346
		if (tmp_nid == NID_X9_62_characteristic_two_field)
sl@0
   347
			is_char_two = 1;
sl@0
   348
sl@0
   349
		if ((p = BN_new()) == NULL || (a = BN_new()) == NULL ||
sl@0
   350
			(b = BN_new()) == NULL || (order = BN_new()) == NULL ||
sl@0
   351
			(cofactor = BN_new()) == NULL)
sl@0
   352
			{
sl@0
   353
			reason = ERR_R_MALLOC_FAILURE;
sl@0
   354
			goto err;
sl@0
   355
			}
sl@0
   356
sl@0
   357
		if (is_char_two)
sl@0
   358
			{
sl@0
   359
			if (!EC_GROUP_get_curve_GF2m(x, p, a, b, ctx))
sl@0
   360
				{
sl@0
   361
				reason = ERR_R_EC_LIB;
sl@0
   362
				goto err;
sl@0
   363
				}
sl@0
   364
			}
sl@0
   365
		else /* prime field */
sl@0
   366
			{
sl@0
   367
			if (!EC_GROUP_get_curve_GFp(x, p, a, b, ctx))
sl@0
   368
				{
sl@0
   369
				reason = ERR_R_EC_LIB;
sl@0
   370
				goto err;
sl@0
   371
				}
sl@0
   372
			}
sl@0
   373
sl@0
   374
		if ((point = EC_GROUP_get0_generator(x)) == NULL)
sl@0
   375
			{
sl@0
   376
			reason = ERR_R_EC_LIB;
sl@0
   377
			goto err;
sl@0
   378
			}
sl@0
   379
		if (!EC_GROUP_get_order(x, order, NULL) || 
sl@0
   380
            		!EC_GROUP_get_cofactor(x, cofactor, NULL))
sl@0
   381
			{
sl@0
   382
			reason = ERR_R_EC_LIB;
sl@0
   383
			goto err;
sl@0
   384
			}
sl@0
   385
		
sl@0
   386
		form = EC_GROUP_get_point_conversion_form(x);
sl@0
   387
sl@0
   388
		if ((gen = EC_POINT_point2bn(x, point, 
sl@0
   389
				form, NULL, ctx)) == NULL)
sl@0
   390
			{
sl@0
   391
			reason = ERR_R_EC_LIB;
sl@0
   392
			goto err;
sl@0
   393
			}
sl@0
   394
sl@0
   395
		buf_len = (size_t)BN_num_bytes(p);
sl@0
   396
		if (buf_len < (i = (size_t)BN_num_bytes(a)))
sl@0
   397
			buf_len = i;
sl@0
   398
		if (buf_len < (i = (size_t)BN_num_bytes(b)))
sl@0
   399
			buf_len = i;
sl@0
   400
		if (buf_len < (i = (size_t)BN_num_bytes(gen)))
sl@0
   401
			buf_len = i;
sl@0
   402
		if (buf_len < (i = (size_t)BN_num_bytes(order)))
sl@0
   403
			buf_len = i;
sl@0
   404
		if (buf_len < (i = (size_t)BN_num_bytes(cofactor))) 
sl@0
   405
			buf_len = i;
sl@0
   406
sl@0
   407
		if ((seed = EC_GROUP_get0_seed(x)) != NULL)
sl@0
   408
			seed_len = EC_GROUP_get_seed_len(x);
sl@0
   409
sl@0
   410
		buf_len += 10;
sl@0
   411
		if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
sl@0
   412
			{
sl@0
   413
			reason = ERR_R_MALLOC_FAILURE;
sl@0
   414
			goto err;
sl@0
   415
			}
sl@0
   416
sl@0
   417
		if (!BIO_indent(bp, off, 128))
sl@0
   418
			goto err;
sl@0
   419
sl@0
   420
		/* print the 'short name' of the field type */
sl@0
   421
		if (BIO_printf(bp, "Field Type: %s\n", OBJ_nid2sn(tmp_nid))
sl@0
   422
			<= 0)
sl@0
   423
			goto err;  
sl@0
   424
sl@0
   425
		if (is_char_two)
sl@0
   426
			{
sl@0
   427
			/* print the 'short name' of the base type OID */
sl@0
   428
			int basis_type = EC_GROUP_get_basis_type(x);
sl@0
   429
			if (basis_type == 0)
sl@0
   430
				goto err;
sl@0
   431
sl@0
   432
			if (!BIO_indent(bp, off, 128))
sl@0
   433
				goto err;
sl@0
   434
sl@0
   435
			if (BIO_printf(bp, "Basis Type: %s\n", 
sl@0
   436
				OBJ_nid2sn(basis_type)) <= 0)
sl@0
   437
				goto err;
sl@0
   438
sl@0
   439
			/* print the polynomial */
sl@0
   440
			if ((p != NULL) && !print(bp, "Polynomial:", p, buffer,
sl@0
   441
				off))
sl@0
   442
				goto err;
sl@0
   443
			}
sl@0
   444
		else
sl@0
   445
			{
sl@0
   446
			if ((p != NULL) && !print(bp, "Prime:", p, buffer,off))
sl@0
   447
				goto err;
sl@0
   448
			}
sl@0
   449
		if ((a != NULL) && !print(bp, "A:   ", a, buffer, off)) 
sl@0
   450
			goto err;
sl@0
   451
		if ((b != NULL) && !print(bp, "B:   ", b, buffer, off))
sl@0
   452
			goto err;
sl@0
   453
		if (form == POINT_CONVERSION_COMPRESSED)
sl@0
   454
			{
sl@0
   455
			if ((gen != NULL) && !print(bp, gen_compressed, gen,
sl@0
   456
				buffer, off))
sl@0
   457
				goto err;
sl@0
   458
			}
sl@0
   459
		else if (form == POINT_CONVERSION_UNCOMPRESSED)
sl@0
   460
			{
sl@0
   461
			if ((gen != NULL) && !print(bp, gen_uncompressed, gen,
sl@0
   462
				buffer, off))
sl@0
   463
				goto err;
sl@0
   464
			}
sl@0
   465
		else /* form == POINT_CONVERSION_HYBRID */
sl@0
   466
			{
sl@0
   467
			if ((gen != NULL) && !print(bp, gen_hybrid, gen,
sl@0
   468
				buffer, off))
sl@0
   469
				goto err;
sl@0
   470
			}
sl@0
   471
		if ((order != NULL) && !print(bp, "Order: ", order, 
sl@0
   472
			buffer, off)) goto err;
sl@0
   473
		if ((cofactor != NULL) && !print(bp, "Cofactor: ", cofactor, 
sl@0
   474
			buffer, off)) goto err;
sl@0
   475
		if (seed && !print_bin(bp, "Seed:", seed, seed_len, off))
sl@0
   476
			goto err;
sl@0
   477
		}
sl@0
   478
	ret=1;
sl@0
   479
err:
sl@0
   480
	if (!ret)
sl@0
   481
 		ECerr(EC_F_ECPKPARAMETERS_PRINT, reason);
sl@0
   482
	if (p) 
sl@0
   483
		BN_free(p);
sl@0
   484
	if (a) 
sl@0
   485
		BN_free(a);
sl@0
   486
	if (b)
sl@0
   487
		BN_free(b);
sl@0
   488
	if (gen)
sl@0
   489
		BN_free(gen);
sl@0
   490
	if (order)
sl@0
   491
		BN_free(order);
sl@0
   492
	if (cofactor)
sl@0
   493
		BN_free(cofactor);
sl@0
   494
	if (ctx)
sl@0
   495
		BN_CTX_free(ctx);
sl@0
   496
	if (buffer != NULL) 
sl@0
   497
		OPENSSL_free(buffer);
sl@0
   498
	return(ret);	
sl@0
   499
	}
sl@0
   500
sl@0
   501
EXPORT_C int EC_KEY_print(BIO *bp, const EC_KEY *x, int off)
sl@0
   502
	{
sl@0
   503
	unsigned char *buffer=NULL;
sl@0
   504
	size_t	buf_len=0, i;
sl@0
   505
	int     ret=0, reason=ERR_R_BIO_LIB;
sl@0
   506
	BIGNUM  *pub_key=NULL, *order=NULL;
sl@0
   507
	BN_CTX  *ctx=NULL;
sl@0
   508
	const EC_GROUP *group;
sl@0
   509
	const EC_POINT *public_key;
sl@0
   510
	const BIGNUM *priv_key;
sl@0
   511
 
sl@0
   512
	if (x == NULL || (group = EC_KEY_get0_group(x)) == NULL)
sl@0
   513
		{
sl@0
   514
		reason = ERR_R_PASSED_NULL_PARAMETER;
sl@0
   515
		goto err;
sl@0
   516
		}
sl@0
   517
sl@0
   518
	public_key = EC_KEY_get0_public_key(x);
sl@0
   519
	if ((pub_key = EC_POINT_point2bn(group, public_key,
sl@0
   520
		EC_KEY_get_conv_form(x), NULL, ctx)) == NULL)
sl@0
   521
		{
sl@0
   522
		reason = ERR_R_EC_LIB;
sl@0
   523
		goto err;
sl@0
   524
		}
sl@0
   525
sl@0
   526
	buf_len = (size_t)BN_num_bytes(pub_key);
sl@0
   527
	priv_key = EC_KEY_get0_private_key(x);
sl@0
   528
	if (priv_key != NULL)
sl@0
   529
		{
sl@0
   530
		if ((i = (size_t)BN_num_bytes(priv_key)) > buf_len)
sl@0
   531
			buf_len = i;
sl@0
   532
		}
sl@0
   533
sl@0
   534
	buf_len += 10;
sl@0
   535
	if ((buffer = OPENSSL_malloc(buf_len)) == NULL)
sl@0
   536
		{
sl@0
   537
		reason = ERR_R_MALLOC_FAILURE;
sl@0
   538
		goto err;
sl@0
   539
		}
sl@0
   540
sl@0
   541
	if (priv_key != NULL)
sl@0
   542
		{
sl@0
   543
		if (!BIO_indent(bp, off, 128))
sl@0
   544
			goto err;
sl@0
   545
		if ((order = BN_new()) == NULL)
sl@0
   546
			goto err;
sl@0
   547
		if (!EC_GROUP_get_order(group, order, NULL))
sl@0
   548
			goto err;
sl@0
   549
		if (BIO_printf(bp, "Private-Key: (%d bit)\n", 
sl@0
   550
			BN_num_bits(order)) <= 0) goto err;
sl@0
   551
		}
sl@0
   552
  
sl@0
   553
	if ((priv_key != NULL) && !print(bp, "priv:", priv_key, 
sl@0
   554
		buffer, off))
sl@0
   555
		goto err;
sl@0
   556
	if ((pub_key != NULL) && !print(bp, "pub: ", pub_key,
sl@0
   557
		buffer, off))
sl@0
   558
		goto err;
sl@0
   559
	if (!ECPKParameters_print(bp, group, off))
sl@0
   560
		goto err;
sl@0
   561
	ret=1;
sl@0
   562
err:
sl@0
   563
	if (!ret)
sl@0
   564
 		ECerr(EC_F_EC_KEY_PRINT, reason);
sl@0
   565
	if (pub_key) 
sl@0
   566
		BN_free(pub_key);
sl@0
   567
	if (order)
sl@0
   568
		BN_free(order);
sl@0
   569
	if (ctx)
sl@0
   570
		BN_CTX_free(ctx);
sl@0
   571
	if (buffer != NULL)
sl@0
   572
		OPENSSL_free(buffer);
sl@0
   573
	return(ret);
sl@0
   574
	}
sl@0
   575
#endif /* OPENSSL_NO_EC */
sl@0
   576
sl@0
   577
static int print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf,
sl@0
   578
	     int off)
sl@0
   579
	{
sl@0
   580
	int n,i;
sl@0
   581
	const char *neg;
sl@0
   582
sl@0
   583
	if (num == NULL) return(1);
sl@0
   584
	neg = (BN_is_negative(num))?"-":"";
sl@0
   585
	if(!BIO_indent(bp,off,128))
sl@0
   586
		return 0;
sl@0
   587
	if (BN_is_zero(num))
sl@0
   588
		{
sl@0
   589
		if (BIO_printf(bp, "%s 0\n", number) <= 0)
sl@0
   590
			return 0;
sl@0
   591
		return 1;
sl@0
   592
		}
sl@0
   593
sl@0
   594
	if (BN_num_bytes(num) <= BN_BYTES)
sl@0
   595
		{
sl@0
   596
		if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
sl@0
   597
			(unsigned long)num->d[0],neg,(unsigned long)num->d[0])
sl@0
   598
			<= 0) return(0);
sl@0
   599
		}
sl@0
   600
	else
sl@0
   601
		{
sl@0
   602
		buf[0]=0;
sl@0
   603
		if (BIO_printf(bp,"%s%s",number,
sl@0
   604
			(neg[0] == '-')?" (Negative)":"") <= 0)
sl@0
   605
			return(0);
sl@0
   606
		n=BN_bn2bin(num,&buf[1]);
sl@0
   607
	
sl@0
   608
		if (buf[1] & 0x80)
sl@0
   609
			n++;
sl@0
   610
		else	buf++;
sl@0
   611
sl@0
   612
		for (i=0; i<n; i++)
sl@0
   613
			{
sl@0
   614
			if ((i%15) == 0)
sl@0
   615
				{
sl@0
   616
				if(BIO_puts(bp,"\n") <= 0
sl@0
   617
				   || !BIO_indent(bp,off+4,128))
sl@0
   618
				    return 0;
sl@0
   619
				}
sl@0
   620
			if (BIO_printf(bp,"%02x%s",buf[i],((i+1) == n)?"":":")
sl@0
   621
				<= 0) return(0);
sl@0
   622
			}
sl@0
   623
		if (BIO_write(bp,"\n",1) <= 0) return(0);
sl@0
   624
		}
sl@0
   625
	return(1);
sl@0
   626
	}
sl@0
   627
sl@0
   628
#ifndef OPENSSL_NO_EC
sl@0
   629
static int print_bin(BIO *fp, const char *name, const unsigned char *buf,
sl@0
   630
		size_t len, int off)
sl@0
   631
	{
sl@0
   632
	size_t i;
sl@0
   633
#ifndef SYMBIAN	
sl@0
   634
	char str[128];
sl@0
   635
#else
sl@0
   636
  char str[80];
sl@0
   637
#endif	
sl@0
   638
sl@0
   639
	if (buf == NULL)
sl@0
   640
		return 1;
sl@0
   641
	if (off)
sl@0
   642
		{
sl@0
   643
#ifndef SYMBIAN			
sl@0
   644
		if (off > 128)
sl@0
   645
			off=128;
sl@0
   646
#else
sl@0
   647
if (off > 80)
sl@0
   648
			off=80;
sl@0
   649
#endif			
sl@0
   650
		memset(str,' ',off);
sl@0
   651
		if (BIO_write(fp, str, off) <= 0)
sl@0
   652
			return 0;
sl@0
   653
		}
sl@0
   654
sl@0
   655
	if (BIO_printf(fp,"%s", name) <= 0)
sl@0
   656
		return 0;
sl@0
   657
sl@0
   658
	for (i=0; i<len; i++)
sl@0
   659
		{
sl@0
   660
		if ((i%15) == 0)
sl@0
   661
			{
sl@0
   662
			str[0]='\n';
sl@0
   663
			memset(&(str[1]),' ',off+4);
sl@0
   664
			if (BIO_write(fp, str, off+1+4) <= 0)
sl@0
   665
				return 0;
sl@0
   666
			}
sl@0
   667
		if (BIO_printf(fp,"%02x%s",buf[i],((i+1) == len)?"":":") <= 0)
sl@0
   668
			return 0;
sl@0
   669
		}
sl@0
   670
	if (BIO_write(fp,"\n",1) <= 0)
sl@0
   671
		return 0;
sl@0
   672
sl@0
   673
	return 1;
sl@0
   674
	}
sl@0
   675
#endif
sl@0
   676
sl@0
   677
#ifndef OPENSSL_NO_DH
sl@0
   678
#ifndef OPENSSL_NO_FP_API
sl@0
   679
EXPORT_C int DHparams_print_fp(FILE *fp, const DH *x)
sl@0
   680
	{
sl@0
   681
	BIO *b;
sl@0
   682
	int ret;
sl@0
   683
sl@0
   684
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   685
		{
sl@0
   686
		DHerr(DH_F_DHPARAMS_PRINT_FP,ERR_R_BUF_LIB);
sl@0
   687
		return(0);
sl@0
   688
		}
sl@0
   689
	BIO_set_fp(b,fp,BIO_NOCLOSE);
sl@0
   690
	ret=DHparams_print(b, x);
sl@0
   691
	BIO_free(b);
sl@0
   692
	return(ret);
sl@0
   693
	}
sl@0
   694
#endif
sl@0
   695
sl@0
   696
EXPORT_C int DHparams_print(BIO *bp, const DH *x)
sl@0
   697
	{
sl@0
   698
	unsigned char *m=NULL;
sl@0
   699
	int reason=ERR_R_BUF_LIB,ret=0;
sl@0
   700
	size_t buf_len=0, i;
sl@0
   701
sl@0
   702
	if (x->p)
sl@0
   703
		buf_len = (size_t)BN_num_bytes(x->p);
sl@0
   704
	else
sl@0
   705
		{
sl@0
   706
		reason = ERR_R_PASSED_NULL_PARAMETER;
sl@0
   707
		goto err;
sl@0
   708
		}
sl@0
   709
	if (x->g)
sl@0
   710
		if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
sl@0
   711
			buf_len = i;
sl@0
   712
	m=(unsigned char *)OPENSSL_malloc(buf_len+10);
sl@0
   713
	if (m == NULL)
sl@0
   714
		{
sl@0
   715
		reason=ERR_R_MALLOC_FAILURE;
sl@0
   716
		goto err;
sl@0
   717
		}
sl@0
   718
sl@0
   719
	if (BIO_printf(bp,"Diffie-Hellman-Parameters: (%d bit)\n",
sl@0
   720
		BN_num_bits(x->p)) <= 0)
sl@0
   721
		goto err;
sl@0
   722
	if (!print(bp,"prime:",x->p,m,4)) goto err;
sl@0
   723
	if (!print(bp,"generator:",x->g,m,4)) goto err;
sl@0
   724
	if (x->length != 0)
sl@0
   725
		{
sl@0
   726
		if (BIO_printf(bp,"    recommended-private-length: %d bits\n",
sl@0
   727
			(int)x->length) <= 0) goto err;
sl@0
   728
		}
sl@0
   729
	ret=1;
sl@0
   730
	if (0)
sl@0
   731
		{
sl@0
   732
err:
sl@0
   733
		DHerr(DH_F_DHPARAMS_PRINT,reason);
sl@0
   734
		}
sl@0
   735
	if (m != NULL) OPENSSL_free(m);
sl@0
   736
	return(ret);
sl@0
   737
	}
sl@0
   738
#endif
sl@0
   739
sl@0
   740
#ifndef OPENSSL_NO_DSA
sl@0
   741
#ifndef OPENSSL_NO_FP_API
sl@0
   742
EXPORT_C int DSAparams_print_fp(FILE *fp, const DSA *x)
sl@0
   743
	{
sl@0
   744
	BIO *b;
sl@0
   745
	int ret;
sl@0
   746
sl@0
   747
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   748
		{
sl@0
   749
		DSAerr(DSA_F_DSAPARAMS_PRINT_FP,ERR_R_BUF_LIB);
sl@0
   750
		return(0);
sl@0
   751
		}
sl@0
   752
	BIO_set_fp(b,fp,BIO_NOCLOSE);
sl@0
   753
	ret=DSAparams_print(b, x);
sl@0
   754
	BIO_free(b);
sl@0
   755
	return(ret);
sl@0
   756
	}
sl@0
   757
#endif
sl@0
   758
sl@0
   759
EXPORT_C int DSAparams_print(BIO *bp, const DSA *x)
sl@0
   760
	{
sl@0
   761
	unsigned char *m=NULL;
sl@0
   762
	int ret=0;
sl@0
   763
	size_t buf_len=0,i;
sl@0
   764
sl@0
   765
	if (x->p)
sl@0
   766
		buf_len = (size_t)BN_num_bytes(x->p);
sl@0
   767
	else
sl@0
   768
		{
sl@0
   769
		DSAerr(DSA_F_DSAPARAMS_PRINT,DSA_R_MISSING_PARAMETERS);
sl@0
   770
		goto err;
sl@0
   771
		}
sl@0
   772
	if (x->q)
sl@0
   773
		if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
sl@0
   774
			buf_len = i;
sl@0
   775
	if (x->g)
sl@0
   776
		if (buf_len < (i = (size_t)BN_num_bytes(x->g)))
sl@0
   777
			buf_len = i;
sl@0
   778
	m=(unsigned char *)OPENSSL_malloc(buf_len+10);
sl@0
   779
	if (m == NULL)
sl@0
   780
		{
sl@0
   781
		DSAerr(DSA_F_DSAPARAMS_PRINT,ERR_R_MALLOC_FAILURE);
sl@0
   782
		goto err;
sl@0
   783
		}
sl@0
   784
sl@0
   785
	if (BIO_printf(bp,"DSA-Parameters: (%d bit)\n",
sl@0
   786
		BN_num_bits(x->p)) <= 0)
sl@0
   787
		goto err;
sl@0
   788
	if (!print(bp,"p:",x->p,m,4)) goto err;
sl@0
   789
	if ((x->q != NULL) && !print(bp,"q:",x->q,m,4)) goto err;
sl@0
   790
	if ((x->g != NULL) && !print(bp,"g:",x->g,m,4)) goto err;
sl@0
   791
	ret=1;
sl@0
   792
err:
sl@0
   793
	if (m != NULL) OPENSSL_free(m);
sl@0
   794
	return(ret);
sl@0
   795
	}
sl@0
   796
sl@0
   797
#endif /* !OPENSSL_NO_DSA */
sl@0
   798
sl@0
   799
#ifndef OPENSSL_NO_EC
sl@0
   800
#ifndef OPENSSL_NO_FP_API
sl@0
   801
EXPORT_C int ECParameters_print_fp(FILE *fp, const EC_KEY *x)
sl@0
   802
	{
sl@0
   803
	BIO *b;
sl@0
   804
	int ret;
sl@0
   805
 
sl@0
   806
	if ((b=BIO_new(BIO_s_file())) == NULL)
sl@0
   807
		{
sl@0
   808
		ECerr(EC_F_ECPARAMETERS_PRINT_FP, ERR_R_BIO_LIB);
sl@0
   809
		return(0);
sl@0
   810
		}
sl@0
   811
	BIO_set_fp(b, fp, BIO_NOCLOSE);
sl@0
   812
	ret = ECParameters_print(b, x);
sl@0
   813
	BIO_free(b);
sl@0
   814
	return(ret);
sl@0
   815
	}
sl@0
   816
#endif
sl@0
   817
sl@0
   818
EXPORT_C int ECParameters_print(BIO *bp, const EC_KEY *x)
sl@0
   819
	{
sl@0
   820
	int     reason=ERR_R_EC_LIB, ret=0;
sl@0
   821
	BIGNUM	*order=NULL;
sl@0
   822
	const EC_GROUP *group;
sl@0
   823
 
sl@0
   824
	if (x == NULL || (group = EC_KEY_get0_group(x)) == NULL)
sl@0
   825
		{
sl@0
   826
		reason = ERR_R_PASSED_NULL_PARAMETER;;
sl@0
   827
		goto err;
sl@0
   828
		}
sl@0
   829
sl@0
   830
	if ((order = BN_new()) == NULL)
sl@0
   831
		{
sl@0
   832
		reason = ERR_R_MALLOC_FAILURE;
sl@0
   833
		goto err;
sl@0
   834
		}
sl@0
   835
sl@0
   836
	if (!EC_GROUP_get_order(group, order, NULL))
sl@0
   837
		{
sl@0
   838
		reason = ERR_R_EC_LIB;
sl@0
   839
		goto err;
sl@0
   840
		}
sl@0
   841
 
sl@0
   842
	if (BIO_printf(bp, "ECDSA-Parameters: (%d bit)\n", 
sl@0
   843
		BN_num_bits(order)) <= 0)
sl@0
   844
		goto err;
sl@0
   845
	if (!ECPKParameters_print(bp, group, 4))
sl@0
   846
		goto err;
sl@0
   847
	ret=1;
sl@0
   848
err:
sl@0
   849
	if (order)
sl@0
   850
		BN_free(order);
sl@0
   851
	ECerr(EC_F_ECPARAMETERS_PRINT, reason);
sl@0
   852
	return(ret);
sl@0
   853
	}
sl@0
   854
  
sl@0
   855
#endif