os/ossrv/ssl/libcrypto/src/crypto/bn/bn_print.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* crypto/bn/bn_print.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  © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
    60  */
    61 
    62 #include <stdio.h>
    63 #include <ctype.h>
    64 #include "cryptlib.h"
    65 #include <openssl/buffer.h>
    66 #include "bn_lcl.h"
    67 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
    68 #include "libcrypto_wsd_macros.h"
    69 #include "libcrypto_wsd.h"
    70 #endif
    71 
    72 #ifndef EMULATOR
    73 static const char Hex[]="0123456789ABCDEF";
    74 #else
    75 static const char *const Hex="0123456789ABCDEF";
    76 #endif
    77 
    78 /* Must 'OPENSSL_free' the returned data */
    79 EXPORT_C char *BN_bn2hex(const BIGNUM *a)
    80 	{
    81 	int i,j,v,z=0;
    82 	char *buf;
    83 	char *p;
    84 
    85 	buf=(char *)OPENSSL_malloc(a->top*BN_BYTES*2+2);
    86 	if (buf == NULL)
    87 		{
    88 		BNerr(BN_F_BN_BN2HEX,ERR_R_MALLOC_FAILURE);
    89 		goto err;
    90 		}
    91 	p=buf;
    92 	if (a->neg) *(p++)='-';
    93 	if (BN_is_zero(a)) *(p++)='0';
    94 	for (i=a->top-1; i >=0; i--)
    95 		{
    96 		for (j=BN_BITS2-8; j >= 0; j-=8)
    97 			{
    98 			/* strip leading zeros */
    99 			v=((int)(a->d[i]>>(long)j))&0xff;
   100 			if (z || (v != 0))
   101 				{
   102 				*(p++)=Hex[v>>4];
   103 				*(p++)=Hex[v&0x0f];
   104 				z=1;
   105 				}
   106 			}
   107 		}
   108 	*p='\0';
   109 err:
   110 	return(buf);
   111 	}
   112 
   113 /* Must 'OPENSSL_free' the returned data */
   114 EXPORT_C char *BN_bn2dec(const BIGNUM *a)
   115 	{
   116 	int i=0,num, ok = 0;
   117 	char *buf=NULL;
   118 	char *p;
   119 	BIGNUM *t=NULL;
   120 	BN_ULONG *bn_data=NULL,*lp;
   121 
   122 	/* get an upper bound for the length of the decimal integer
   123 	 * num <= (BN_num_bits(a) + 1) * log(2)
   124 	 *     <= 3 * BN_num_bits(a) * 0.1001 + log(2) + 1     (rounding error)
   125 	 *     <= BN_num_bits(a)/10 + BN_num_bits/1000 + 1 + 1 
   126 	 */
   127 	i=BN_num_bits(a)*3;
   128 	num=(i/10+i/1000+1)+1;
   129 	bn_data=(BN_ULONG *)OPENSSL_malloc((num/BN_DEC_NUM+1)*sizeof(BN_ULONG));
   130 	buf=(char *)OPENSSL_malloc(num+3);
   131 	if ((buf == NULL) || (bn_data == NULL))
   132 		{
   133 		BNerr(BN_F_BN_BN2DEC,ERR_R_MALLOC_FAILURE);
   134 		goto err;
   135 		}
   136 	if ((t=BN_dup(a)) == NULL) goto err;
   137 
   138 #define BUF_REMAIN (num+3 - (size_t)(p - buf))
   139 	p=buf;
   140 	lp=bn_data;
   141 	if (BN_is_zero(t))
   142 		{
   143 		*(p++)='0';
   144 		*(p++)='\0';
   145 		}
   146 	else
   147 		{
   148 		if (BN_is_negative(t))
   149 			*p++ = '-';
   150 
   151 		i=0;
   152 		while (!BN_is_zero(t))
   153 			{
   154 			*lp=BN_div_word(t,BN_DEC_CONV);
   155 			lp++;
   156 			}
   157 		lp--;
   158 		/* We now have a series of blocks, BN_DEC_NUM chars
   159 		 * in length, where the last one needs truncation.
   160 		 * The blocks need to be reversed in order. */
   161 		BIO_snprintf(p,BUF_REMAIN,BN_DEC_FMT1,*lp);
   162 		while (*p) p++;
   163 		while (lp != bn_data)
   164 			{
   165 			lp--;
   166 			BIO_snprintf(p,BUF_REMAIN,BN_DEC_FMT2,*lp);
   167 			while (*p) p++;
   168 			}
   169 		}
   170 	ok = 1;
   171 err:
   172 	if (bn_data != NULL) OPENSSL_free(bn_data);
   173 	if (t != NULL) BN_free(t);
   174 	if (!ok && buf)
   175 		{
   176 		OPENSSL_free(buf);
   177 		buf = NULL;
   178 		}
   179 
   180 	return(buf);
   181 	}
   182 
   183 EXPORT_C int BN_hex2bn(BIGNUM **bn, const char *a)
   184 	{
   185 	BIGNUM *ret=NULL;
   186 	BN_ULONG l=0;
   187 	int neg=0,h,m,i,j,k,c;
   188 	int num;
   189 
   190 	if ((a == NULL) || (*a == '\0')) return(0);
   191 
   192 	if (*a == '-') { neg=1; a++; }
   193 
   194 	for (i=0; isxdigit((unsigned char) a[i]); i++)
   195 		;
   196 
   197 	num=i+neg;
   198 	if (bn == NULL) return(num);
   199 
   200 	/* a is the start of the hex digits, and it is 'i' long */
   201 	if (*bn == NULL)
   202 		{
   203 		if ((ret=BN_new()) == NULL) return(0);
   204 		}
   205 	else
   206 		{
   207 		ret= *bn;
   208 		BN_zero(ret);
   209 		}
   210 
   211 	/* i is the number of hex digests; */
   212 	if (bn_expand(ret,i*4) == NULL) goto err;
   213 
   214 	j=i; /* least significant 'hex' */
   215 	m=0;
   216 	h=0;
   217 	while (j > 0)
   218 		{
   219 		m=((BN_BYTES*2) <= j)?(BN_BYTES*2):j;
   220 		l=0;
   221 		for (;;)
   222 			{
   223 			c=a[j-m];
   224 			if ((c >= '0') && (c <= '9')) k=c-'0';
   225 			else if ((c >= 'a') && (c <= 'f')) k=c-'a'+10;
   226 			else if ((c >= 'A') && (c <= 'F')) k=c-'A'+10;
   227 			else k=0; /* paranoia */
   228 			l=(l<<4)|k;
   229 
   230 			if (--m <= 0)
   231 				{
   232 				ret->d[h++]=l;
   233 				break;
   234 				}
   235 			}
   236 		j-=(BN_BYTES*2);
   237 		}
   238 	ret->top=h;
   239 	bn_correct_top(ret);
   240 	ret->neg=neg;
   241 
   242 	*bn=ret;
   243 	bn_check_top(ret);
   244 	return(num);
   245 err:
   246 	if (*bn == NULL) BN_free(ret);
   247 	return(0);
   248 	}
   249 
   250 EXPORT_C int BN_dec2bn(BIGNUM **bn, const char *a)
   251 	{
   252 	BIGNUM *ret=NULL;
   253 	BN_ULONG l=0;
   254 	int neg=0,i,j;
   255 	int num;
   256 
   257 	if ((a == NULL) || (*a == '\0')) return(0);
   258 	if (*a == '-') { neg=1; a++; }
   259 
   260 	for (i=0; isdigit((unsigned char) a[i]); i++)
   261 		;
   262 
   263 	num=i+neg;
   264 	if (bn == NULL) return(num);
   265 
   266 	/* a is the start of the digits, and it is 'i' long.
   267 	 * We chop it into BN_DEC_NUM digits at a time */
   268 	if (*bn == NULL)
   269 		{
   270 		if ((ret=BN_new()) == NULL) return(0);
   271 		}
   272 	else
   273 		{
   274 		ret= *bn;
   275 		BN_zero(ret);
   276 		}
   277 
   278 	/* i is the number of digests, a bit of an over expand; */
   279 	if (bn_expand(ret,i*4) == NULL) goto err;
   280 
   281 	j=BN_DEC_NUM-(i%BN_DEC_NUM);
   282 	if (j == BN_DEC_NUM) j=0;
   283 	l=0;
   284 	while (*a)
   285 		{
   286 		l*=10;
   287 		l+= *a-'0';
   288 		a++;
   289 		if (++j == BN_DEC_NUM)
   290 			{
   291 			BN_mul_word(ret,BN_DEC_CONV);
   292 			BN_add_word(ret,l);
   293 			l=0;
   294 			j=0;
   295 			}
   296 		}
   297 	ret->neg=neg;
   298 
   299 	bn_correct_top(ret);
   300 	*bn=ret;
   301 	bn_check_top(ret);
   302 	return(num);
   303 err:
   304 	if (*bn == NULL) BN_free(ret);
   305 	return(0);
   306 	}
   307 
   308 #ifndef OPENSSL_NO_BIO
   309 #ifndef OPENSSL_NO_FP_API
   310 EXPORT_C int BN_print_fp(FILE *fp, const BIGNUM *a)
   311 	{
   312 	BIO *b;
   313 	int ret;
   314 
   315 	if ((b=BIO_new(BIO_s_file())) == NULL)
   316 		return(0);
   317 	BIO_set_fp(b,fp,BIO_NOCLOSE);
   318 	ret=BN_print(b,a);
   319 	BIO_free(b);
   320 	return(ret);
   321 	}
   322 #endif
   323 
   324 EXPORT_C int BN_print(BIO *bp, const BIGNUM *a)
   325 	{
   326 	int i,j,v,z=0;
   327 	int ret=0;
   328 
   329 	if ((a->neg) && (BIO_write(bp,"-",1) != 1)) goto end;
   330 	if (BN_is_zero(a) && (BIO_write(bp,"0",1) != 1)) goto end;
   331 	for (i=a->top-1; i >=0; i--)
   332 		{
   333 		for (j=BN_BITS2-4; j >= 0; j-=4)
   334 			{
   335 			/* strip leading zeros */
   336 			v=((int)(a->d[i]>>(long)j))&0x0f;
   337 			if (z || (v != 0))
   338 				{
   339 				if (BIO_write(bp,&(Hex[v]),1) != 1)
   340 					goto end;
   341 				z=1;
   342 				}
   343 			}
   344 		}
   345 	ret=1;
   346 end:
   347 	return(ret);
   348 	}
   349 #endif