bn_int.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright 2014-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef HEADER_BN_INT_H
  10. # define HEADER_BN_INT_H
  11. # include <openssl/bn.h>
  12. # include <limits.h>
  13. BIGNUM *bn_wexpand(BIGNUM *a, int words);
  14. BIGNUM *bn_expand2(BIGNUM *a, int words);
  15. void bn_correct_top(BIGNUM *a);
  16. /*
  17. * Determine the modified width-(w+1) Non-Adjacent Form (wNAF) of 'scalar'.
  18. * This is an array r[] of values that are either zero or odd with an
  19. * absolute value less than 2^w satisfying scalar = \sum_j r[j]*2^j where at
  20. * most one of any w+1 consecutive digits is non-zero with the exception that
  21. * the most significant digit may be only w-1 zeros away from that next
  22. * non-zero digit.
  23. */
  24. signed char *bn_compute_wNAF(const BIGNUM *scalar, int w, size_t *ret_len);
  25. int bn_get_top(const BIGNUM *a);
  26. int bn_get_dmax(const BIGNUM *a);
  27. /* Set all words to zero */
  28. void bn_set_all_zero(BIGNUM *a);
  29. /*
  30. * Copy the internal BIGNUM words into out which holds size elements (and size
  31. * must be bigger than top)
  32. */
  33. int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size);
  34. BN_ULONG *bn_get_words(const BIGNUM *a);
  35. /*
  36. * Set the internal data words in a to point to words which contains size
  37. * elements. The BN_FLG_STATIC_DATA flag is set
  38. */
  39. void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size);
  40. /*
  41. * Copy words into the BIGNUM |a|, reallocating space as necessary.
  42. * The negative flag of |a| is not modified.
  43. * Returns 1 on success and 0 on failure.
  44. */
  45. /*
  46. * |num_words| is int because bn_expand2 takes an int. This is an internal
  47. * function so we simply trust callers not to pass negative values.
  48. */
  49. int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words);
  50. /*
  51. * Some BIGNUM functions assume most significant limb to be non-zero, which
  52. * is customarily arranged by bn_correct_top. Output from below functions
  53. * is not processed with bn_correct_top, and for this reason it may not be
  54. * returned out of public API. It may only be passed internally into other
  55. * functions known to support non-minimal or zero-padded BIGNUMs.
  56. */
  57. int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  58. BN_MONT_CTX *mont, BN_CTX *ctx);
  59. int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
  60. BN_CTX *ctx);
  61. int bn_from_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
  62. BN_CTX *ctx);
  63. int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  64. const BIGNUM *m);
  65. int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  66. const BIGNUM *m);
  67. int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
  68. int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
  69. #endif