source: trunk/cscrypt/bn_print.c@ 1

Last change on this file since 1 was 1, checked in by root, 14 years ago

initial import

File size: 7.0 KB
Line 
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#include <stdio.h>
60#include <ctype.h>
61#include "bn_lcl.h"
62#include "buffer.h"
63#include "openssl_mods.h"
64
65static const char *Hex="0123456789ABCDEF";
66
67/* Must 'OPENSSL_free' the returned data */
68char *BN_bn2hex(const BIGNUM *a)
69 {
70 int i,j,v,z=0;
71 char *buf;
72 char *p;
73
74 buf=(char *)OPENSSL_malloc(a->top*BN_BYTES*2+2);
75 if (buf == NULL)
76 {
77 goto err;
78 }
79 p=buf;
80 if (a->neg) *(p++)='-';
81 if (a->top == 0) *(p++)='0';
82 for (i=a->top-1; i >=0; i--)
83 {
84 for (j=BN_BITS2-8; j >= 0; j-=8)
85 {
86 /* strip leading zeros */
87 v=((int)(a->d[i]>>(long)j))&0xff;
88 if (z || (v != 0))
89 {
90 *(p++)=Hex[v>>4];
91 *(p++)=Hex[v&0x0f];
92 z=1;
93 }
94 }
95 }
96 *p='\0';
97err:
98 return(buf);
99 }
100
101/* Must 'OPENSSL_free' the returned data */
102char *BN_bn2dec(const BIGNUM *a)
103 {
104 int i=0,num;
105 char *buf=NULL;
106 char *p;
107 BIGNUM *t=NULL;
108 BN_ULONG *bn_data=NULL,*lp;
109
110 i=BN_num_bits(a)*3;
111 num=(i/10+i/1000+3)+1;
112 bn_data=(BN_ULONG *)OPENSSL_malloc((num/BN_DEC_NUM+1)*sizeof(BN_ULONG));
113 buf=(char *)OPENSSL_malloc(num+3);
114 if ((buf == NULL) || (bn_data == NULL))
115 {
116 goto err;
117 }
118 if ((t=BN_dup(a)) == NULL) goto err;
119
120 p=buf;
121 lp=bn_data;
122 if (t->neg) *(p++)='-';
123 if (t->top == 0)
124 {
125 *(p++)='0';
126 *(p++)='\0';
127 }
128 else
129 {
130 i=0;
131 while (!BN_is_zero(t))
132 {
133 *lp=BN_div_word(t,BN_DEC_CONV);
134 lp++;
135 }
136 lp--;
137 /* We now have a series of blocks, BN_DEC_NUM chars
138 * in length, where the last one needs truncation.
139 * The blocks need to be reversed in order. */
140 sprintf(p,BN_DEC_FMT1,*lp);
141 while (*p) p++;
142 while (lp != bn_data)
143 {
144 lp--;
145 sprintf(p,BN_DEC_FMT2,*lp);
146 while (*p) p++;
147 }
148 }
149err:
150 if (bn_data != NULL) OPENSSL_free(bn_data);
151 if (t != NULL) BN_free(t);
152 return(buf);
153 }
154
155int BN_hex2bn(BIGNUM **bn, const char *a)
156 {
157 BIGNUM *ret=NULL;
158 BN_ULONG l=0;
159 int neg=0,h,m,i,j,k,c;
160 int num;
161
162 if ((a == NULL) || (*a == '\0')) return(0);
163
164 if (*a == '-') { neg=1; a++; }
165
166 for (i=0; isxdigit((unsigned char) a[i]); i++)
167 ;
168
169 num=i+neg;
170 if (bn == NULL) return(num);
171
172 /* a is the start of the hex digits, and it is 'i' long */
173 if (*bn == NULL)
174 {
175 if ((ret=BN_new()) == NULL) return(0);
176 }
177 else
178 {
179 ret= *bn;
180 BN_zero(ret);
181 }
182
183 /* i is the number of hex digests; */
184 if (bn_expand(ret,i*4) == NULL) goto err;
185
186 j=i; /* least significant 'hex' */
187 m=0;
188 h=0;
189 while (j > 0)
190 {
191 m=((BN_BYTES*2) <= j)?(BN_BYTES*2):j;
192 l=0;
193 for (;;)
194 {
195 c=a[j-m];
196 if ((c >= '0') && (c <= '9')) k=c-'0';
197 else if ((c >= 'a') && (c <= 'f')) k=c-'a'+10;
198 else if ((c >= 'A') && (c <= 'F')) k=c-'A'+10;
199 else k=0; /* paranoia */
200 l=(l<<4)|k;
201
202 if (--m <= 0)
203 {
204 ret->d[h++]=l;
205 break;
206 }
207 }
208 j-=(BN_BYTES*2);
209 }
210 ret->top=h;
211 bn_fix_top(ret);
212 ret->neg=neg;
213
214 *bn=ret;
215 return(num);
216err:
217 if (*bn == NULL) BN_free(ret);
218 return(0);
219 }
220
221int BN_dec2bn(BIGNUM **bn, const char *a)
222 {
223 BIGNUM *ret=NULL;
224 BN_ULONG l=0;
225 int neg=0,i,j;
226 int num;
227
228 if ((a == NULL) || (*a == '\0')) return(0);
229 if (*a == '-') { neg=1; a++; }
230
231 for (i=0; isdigit((unsigned char) a[i]); i++)
232 ;
233
234 num=i+neg;
235 if (bn == NULL) return(num);
236
237 /* a is the start of the digits, and it is 'i' long.
238 * We chop it into BN_DEC_NUM digits at a time */
239 if (*bn == NULL)
240 {
241 if ((ret=BN_new()) == NULL) return(0);
242 }
243 else
244 {
245 ret= *bn;
246 BN_zero(ret);
247 }
248
249 /* i is the number of digests, a bit of an over expand; */
250 if (bn_expand(ret,i*4) == NULL) goto err;
251
252 j=BN_DEC_NUM-(i%BN_DEC_NUM);
253 if (j == BN_DEC_NUM) j=0;
254 l=0;
255 while (*a)
256 {
257 l*=10;
258 l+= *a-'0';
259 a++;
260 if (++j == BN_DEC_NUM)
261 {
262 BN_mul_word(ret,BN_DEC_CONV);
263 BN_add_word(ret,l);
264 l=0;
265 j=0;
266 }
267 }
268 ret->neg=neg;
269
270 bn_fix_top(ret);
271 *bn=ret;
272 return(num);
273err:
274 if (*bn == NULL) BN_free(ret);
275 return(0);
276 }
277
278#ifdef BN_DEBUG
279void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
280 {
281 int i;
282 fprintf(o, "%s=", a);
283 for (i=n-1;i>=0;i--)
284 fprintf(o, "%08lX", b[i]); /* assumes 32-bit BN_ULONG */
285 fprintf(o, "\n");
286 }
287#endif
Note: See TracBrowser for help on using the repository browser.