bn_cutoffs.c 449 B

1234567891011121314
  1. #include "tommath_private.h"
  2. #ifdef BN_CUTOFFS_C
  3. /* LibTomMath, multiple-precision integer library -- Tom St Denis */
  4. /* SPDX-License-Identifier: Unlicense */
  5. #ifndef MP_FIXED_CUTOFFS
  6. #include "tommath_cutoffs.h"
  7. int KARATSUBA_MUL_CUTOFF = MP_DEFAULT_KARATSUBA_MUL_CUTOFF,
  8. KARATSUBA_SQR_CUTOFF = MP_DEFAULT_KARATSUBA_SQR_CUTOFF,
  9. TOOM_MUL_CUTOFF = MP_DEFAULT_TOOM_MUL_CUTOFF,
  10. TOOM_SQR_CUTOFF = MP_DEFAULT_TOOM_SQR_CUTOFF;
  11. #endif
  12. #endif