bn.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 OSSL_CRYPTO_BN_H
  10. # define OSSL_CRYPTO_BN_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. Even
  56. * though the goal is to facilitate constant-time-ness, not each subroutine
  57. * is constant-time by itself. They all have pre-conditions, consult source
  58. * code...
  59. */
  60. int bn_mul_mont_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  61. BN_MONT_CTX *mont, BN_CTX *ctx);
  62. int bn_to_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
  63. BN_CTX *ctx);
  64. int bn_from_mont_fixed_top(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
  65. BN_CTX *ctx);
  66. int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  67. const BIGNUM *m);
  68. int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
  69. const BIGNUM *m);
  70. int bn_mul_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
  71. int bn_sqr_fixed_top(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
  72. int bn_lshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n);
  73. int bn_rshift_fixed_top(BIGNUM *r, const BIGNUM *a, int n);
  74. int bn_div_fixed_top(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
  75. const BIGNUM *d, BN_CTX *ctx);
  76. #endif