bnprint.c
Upload User: zbbssh
Upload Date: 2007-01-08
Package Size: 196k
Code Size: 1k
Category:

CA program

Development Platform:

C/C++

  1. /*
  2.  * bnprint.c - Print a bignum, for debugging purposes.
  3.  *
  4.  * Copyright (c) 1995  Colin Plumb.  All rights reserved.
  5.  * For licensing and other legal details, see the file legal.c.
  6.  */
  7. #if HAVE_CONFIG_H
  8. #include "config.h"
  9. #endif
  10. #include <stdio.h>
  11. #if !NO_STRING_H
  12. #include <string.h>
  13. #elif HAVE_STRINGS_H
  14. #include <strings.h>
  15. #endif
  16. #include "bn.h"
  17. #include "bnprint.h"
  18. #include "kludge.h"
  19. int
  20. bnPrint(FILE *f, char const *prefix, struct BigNum const *bn,
  21. char const *suffix)
  22. {
  23. unsigned char temp[32]; /* How much to print on one line */
  24. unsigned len;
  25. size_t i;
  26. if (prefix && fputs(prefix, f) < 0)
  27. return EOF;
  28. len = (bnBits(bn) + 7)/ 8;
  29. if (!len) {
  30. if (putc('0', f) < 0)
  31. return EOF;
  32. } else {
  33. while (len > sizeof(temp)) {
  34. len -= sizeof(temp);
  35. bnExtractBigBytes(bn, temp, len, sizeof(temp));
  36. for (i = 0; i < sizeof(temp); i++)
  37. if (fprintf(f, "%02X", temp[i]) < 0)
  38. return EOF;
  39. if (putc('\', f) < 0 || putc('n', f) < 0)
  40. return EOF;
  41. if (prefix) {
  42. i = strlen(prefix);
  43. while (i--)
  44. if (putc(' ', f) < 0)
  45. return EOF;
  46. }
  47. }
  48. bnExtractBigBytes(bn, temp, 0, len);
  49. for (i = 0; i < len; i++)
  50. if (fprintf(f, "%02X", temp[i]) < 0)
  51. return EOF;
  52. }
  53. return suffix ? fputs(suffix, f) : 0;
  54. }