1 /* $OpenBSD: bn_print.c,v 1.31 2017/01/29 17:49:22 beck Exp $ */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
63 #include <openssl/opensslconf.h>
65 #include <openssl/bio.h>
66 #include <openssl/buffer.h>
67 #include <openssl/err.h>
71 static const char Hex
[]="0123456789ABCDEF";
73 /* Must 'free' the returned data */
75 BN_bn2hex(const BIGNUM
*a
)
81 buf
= malloc(BN_is_negative(a
) + a
->top
* BN_BYTES
* 2 + 2);
83 BNerror(ERR_R_MALLOC_FAILURE
);
87 if (BN_is_negative(a
))
91 for (i
= a
->top
- 1; i
>=0; i
--) {
92 for (j
= BN_BITS2
- 8; j
>= 0; j
-= 8) {
93 /* strip leading zeros */
94 v
= ((int)(a
->d
[i
] >> (long)j
)) & 0xff;
108 /* Must 'free' the returned data */
110 BN_bn2dec(const BIGNUM
*a
)
112 int i
= 0, num
, bn_data_num
, ok
= 0;
116 BN_ULONG
*bn_data
= NULL
, *lp
;
119 buf
= malloc(BN_is_negative(a
) + 2);
121 BNerror(ERR_R_MALLOC_FAILURE
);
125 if (BN_is_negative(a
))
132 /* get an upper bound for the length of the decimal integer
133 * num <= (BN_num_bits(a) + 1) * log(2)
134 * <= 3 * BN_num_bits(a) * 0.1001 + log(2) + 1 (rounding error)
135 * <= BN_num_bits(a)/10 + BN_num_bits/1000 + 1 + 1
137 i
= BN_num_bits(a
) * 3;
138 num
= (i
/ 10 + i
/ 1000 + 1) + 1;
139 bn_data_num
= num
/ BN_DEC_NUM
+ 1;
140 bn_data
= reallocarray(NULL
, bn_data_num
, sizeof(BN_ULONG
));
141 buf
= malloc(num
+ 3);
142 if ((buf
== NULL
) || (bn_data
== NULL
)) {
143 BNerror(ERR_R_MALLOC_FAILURE
);
146 if ((t
= BN_dup(a
)) == NULL
)
149 #define BUF_REMAIN (num+3 - (size_t)(p - buf))
152 if (BN_is_negative(t
))
155 while (!BN_is_zero(t
)) {
156 if (lp
- bn_data
>= bn_data_num
)
158 *lp
= BN_div_word(t
, BN_DEC_CONV
);
159 if (*lp
== (BN_ULONG
)-1)
164 /* We now have a series of blocks, BN_DEC_NUM chars
165 * in length, where the last one needs truncation.
166 * The blocks need to be reversed in order. */
167 snprintf(p
, BUF_REMAIN
, BN_DEC_FMT1
, *lp
);
170 while (lp
!= bn_data
) {
172 snprintf(p
, BUF_REMAIN
, BN_DEC_FMT2
, *lp
);
190 BN_hex2bn(BIGNUM
**bn
, const char *a
)
194 int neg
= 0, h
, m
, i
,j
, k
, c
;
197 if ((a
== NULL
) || (*a
== '\0'))
205 for (i
= 0; i
<= (INT_MAX
/ 4) && isxdigit((unsigned char)a
[i
]); i
++)
214 /* a is the start of the hex digits, and it is 'i' long */
216 if ((ret
= BN_new()) == NULL
)
223 /* i is the number of hex digits */
224 if (bn_expand(ret
, i
* 4) == NULL
)
227 j
= i
; /* least significant 'hex' */
231 m
= ((BN_BYTES
*2) <= j
) ? (BN_BYTES
* 2) : j
;
235 if ((c
>= '0') && (c
<= '9'))
237 else if ((c
>= 'a') && (c
<= 'f'))
239 else if ((c
>= 'A') && (c
<= 'F'))
242 k
= 0; /* paranoia */
267 BN_dec2bn(BIGNUM
**bn
, const char *a
)
274 if ((a
== NULL
) || (*a
== '\0'))
281 for (i
= 0; i
<= (INT_MAX
/ 4) && isdigit((unsigned char)a
[i
]); i
++)
290 /* a is the start of the digits, and it is 'i' long.
291 * We chop it into BN_DEC_NUM digits at a time */
293 if ((ret
= BN_new()) == NULL
)
300 /* i is the number of digits, a bit of an over expand */
301 if (bn_expand(ret
, i
* 4) == NULL
)
304 j
= BN_DEC_NUM
- (i
% BN_DEC_NUM
);
312 if (++j
== BN_DEC_NUM
) {
313 BN_mul_word(ret
, BN_DEC_CONV
);
333 BN_asc2bn(BIGNUM
**bn
, const char *a
)
339 if (p
[0] == '0' && (p
[1] == 'X' || p
[1] == 'x')) {
340 if (!BN_hex2bn(bn
, p
+ 2))
343 if (!BN_dec2bn(bn
, p
))
351 #ifndef OPENSSL_NO_BIO
353 BN_print_fp(FILE *fp
, const BIGNUM
*a
)
358 if ((b
= BIO_new(BIO_s_file())) == NULL
)
360 BIO_set_fp(b
, fp
, BIO_NOCLOSE
);
361 ret
= BN_print(b
, a
);
367 BN_print(BIO
*bp
, const BIGNUM
*a
)
372 if ((a
->neg
) && (BIO_write(bp
, "-", 1) != 1))
374 if (BN_is_zero(a
) && (BIO_write(bp
, "0", 1) != 1))
376 for (i
= a
->top
- 1; i
>= 0; i
--) {
377 for (j
= BN_BITS2
- 4; j
>= 0; j
-= 4) {
378 /* strip leading zeros */
379 v
= ((int)(a
->d
[i
] >> (long)j
)) & 0x0f;
381 if (BIO_write(bp
, &(Hex
[v
]), 1) != 1)
398 static char data
[16];
403 snprintf(data
,sizeof data
, "bn(%d,%d)",
404 (int)sizeof(BN_ULLONG
) * 8, (int)sizeof(BN_ULONG
) * 8);
406 snprintf(data
,sizeof data
, "bn(%d,%d)",
407 (int)sizeof(BN_ULONG
) * 8, (int)sizeof(BN_ULONG
) * 8);