bn_print.c 9.5 KB

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