1. 5f01665 Reuse Bignum core I/O functions by Janos Follath · 3 years ago
  2. 4670f88 Reuse Bignum helper functions by Janos Follath · 3 years ago
  3. 4614b9a Move Bignum macros to common header by Janos Follath · 3 years ago
  4. ce7f18c Fix a/an typos in doxygen and other comments by Tom Cosgrove · 3 years ago
  5. 5b50f38 Merge pull request #934 from gilles-peskine-arm/mpi-0-mod-2 by Dave Rodgman · 3 years, 1 month ago
  6. ae25bb0 Fix null pointer dereference in mpi_mod_int(0, 2) by Gilles Peskine · 3 years, 2 months ago
  7. 8b0ecbc Redo of PR#5345. Fixed spelling and typographical errors found by CodeSpell. by Shaun Case · 3 years, 8 months ago
  8. 63eb28c Use separate counters for 8-fold and single multiplication steps by Hanno Becker · 3 years, 4 months ago
  9. eacf3b9 Simplify organization of inline assembly for bignum by Hanno Becker · 3 years, 4 months ago
  10. 3577131 Reintroduce trimming of input in mbedtls_mpi_mul_int() by Hanno Becker · 3 years, 4 months ago
  11. 1772e05 Reduce the scope of local variable in mbedtls_mpi_mul_mpi() by Hanno Becker · 3 years, 4 months ago
  12. da763de Revert "Don't trim MPIs to minimal size in mbedtls_mpi_mul_mpi()" by Hanno Becker · 3 years, 4 months ago
  13. 0235f75 Reduce scope of local variables in mpi_montmul() by Hanno Becker · 3 years, 4 months ago
  14. 9137b9c Note alternative implementation strategy in mbedtls_mpi_mul_int() by Hanno Becker · 3 years, 4 months ago
  15. 808e666 Don't trim MPIs to minimal size in mbedtls_mpi_mul_mpi() by Hanno Becker · 3 years, 4 months ago
  16. 99ba4cc Remove Doxygen from mbedtls_mpi_core_mla() implementation by Hanno Becker · 3 years, 4 months ago
  17. 5d4ceeb Remove const qualifier for mutable local variable in mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  18. 284d778 Address review comments by Hanno Becker · 3 years, 4 months ago
  19. aef9cc4 Rename mpi_mul_hlp -> mbedtls_mpi_core_mla and expose internally by Hanno Becker · 3 years, 4 months ago
  20. e141702 Adjust mpi_montmul() to new signature of mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  21. 74a11a3 Adjust mbedtls_mpi_mul_int() to changed signature of mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  22. fee261a Adjust mbedtls_mpi_mul_mpi() to new signature of mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  23. defe569 Make length of output explicit in mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  24. e7f14a3 Remove unused variable in mpi_mul_hlp() by Hanno Becker · 3 years, 4 months ago
  25. 76960a7 mbedtls_mpi_read_binary() document that function guarantees to return an MPI with exactly the necessary number of limbs and remove redundant call to mbedtls_mpi_grow() by Przemyslaw Stekiel · 3 years, 5 months ago
  26. 9a83443 Remove redundant write operation in Montgomery multiplication by Hanno Becker · 3 years, 7 months ago
  27. 351c71b Fix builds when config.h only defines MBEDTLS_BIGNUM_C by Dave Rodgman · 3 years, 8 months ago
  28. 22c9a6f Rename internal header constant_time.h to constant_time_internal.h by Gabor Mezei · 3 years, 10 months ago
  29. 90437e3 Rename constant-time functions to have mbedtls_ct prefix by Gabor Mezei · 3 years, 10 months ago
  30. c29a3da Move mbedtls_mpi_lt_mpi_ct function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  31. 5c97621 Move mbedtls_mpi_safe_cond_swap function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  32. 40a4925 Move mbedtls_mpi_safe_cond_assign function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  33. be8d98b Move mbedtls_cf_mpi_uint_cond_assign function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  34. d3230d5 Move mbedtls_cf_cond_select_sign function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  35. 3f90fd5 Move mbedtls_cf_mpi_uint_lt function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  36. 84dc02c Remove module dependency by gabor-mezei-arm · 3 years, 10 months ago
  37. 8d1d5fd Move mbedtls_cf_size_bool_eq function to the constant-time module by gabor-mezei-arm · 3 years, 10 months ago
  38. 9fa43ce Rename function to have suitable name by gabor-mezei-arm · 3 years, 10 months ago
  39. 538a0cb Replace `_RR` with `prec_RR` to prevent reserved identifier clashes by Yuto Takano · 4 years, 1 month ago
  40. 36c8ddc Replace `_B` with `B` to prevent reserved identifier clashes by Yuto Takano · 4 years, 1 month ago
  41. 34d8cd2 Merge remote-tracking branch 'restricted/development-restricted' into mbedtls-3.0.0rc0-pr by Dave Rodgman · 4 years, 1 month ago
  42. b09c7ee Correct some statements about the ordering of A and B by Gilles Peskine · 4 years, 1 month ago
  43. 4d3fd36 Clarification in a comment by Gilles Peskine · 4 years, 1 month ago
  44. 4169c32 Simplify is-zero check by Gilles Peskine · 4 years, 2 months ago
  45. 2a63c5b Write a proof of correctness for mbedtls_mpi_gcd by Gilles Peskine · 4 years, 2 months ago
  46. 4df3f1f Explain how the code relates to the description in HAC by Gilles Peskine · 4 years, 2 months ago
  47. 997be0a Fix multiplication with negative result and a low-order 0 limb by Gilles Peskine · 4 years, 2 months ago
  48. 2aa3f16 Whitespace fix by Gilles Peskine · 4 years, 2 months ago
  49. 7cba859 mbedtls_mpi_read_string: make an empty bignum for an empty string by Gilles Peskine · 4 years, 2 months ago
  50. f4998b0 Fix multiplication producing a negative zero by Gilles Peskine · 4 years, 2 months ago
  51. b4347d8 mbedtls_mpi_gcd: small optimization by Gilles Peskine · 4 years, 2 months ago
  52. 27253bc mbedtls_mpi_gcd: fix the case B==0 by Gilles Peskine · 4 years, 2 months ago
  53. 3da1a8f Fix null pointer dereference in mbedtls_mpi_exp_mod by Gilles Peskine · 4 years, 2 months ago
  54. da1eab3 Merge pull request #828 from mpg/rsa-lookup-restricted by Manuel Pégourié-Gonnard · 4 years, 1 month ago
  55. a48b16a Homogenize coding patterns by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  56. e22176e Silence MSVC type conversion warnings by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  57. 31ec1d7 Simplify sign selection by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  58. 3ae4ae4 Avoid UB caused by conversion to int by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  59. 448f135 Use bit operations for mpi_safe_cond_swap() by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  60. 5ada7a8 Use bit operations for mpi_safe_cond_assign() by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  61. 92413ef Avoid using == for sensitive comparisons by Manuel Pégourié-Gonnard · 4 years, 2 months ago
  62. 1297ef3 Use constant-time look-up for modular exponentiation by Manuel Pégourié-Gonnard · 4 years, 5 months ago
  63. 5b0589e Fix non-constant-time comparison in mbedtls_mpi_random by Gilles Peskine · 4 years, 4 months ago
  64. afb2bd2 Note that the byte order in mpi_fill_random_internal() is deliberate by Gilles Peskine · 4 years, 2 months ago
  65. 405b091 Use MBEDTLS_MPI_CHK where warranted by Gilles Peskine · 4 years, 2 months ago
  66. ed32b57 New internal function mbedtls_mpi_resize_clear by Gilles Peskine · 4 years, 2 months ago
  67. 87823d7 Use ternary operator with the most common case first by Gilles Peskine · 4 years, 2 months ago
  68. e842e58 Correct some comments about ECC in mbedtls_mpi_random by Gilles Peskine · 4 years, 4 months ago
  69. ebe9b6a mpi_fill_random_internal: remove spurious grow() call by Gilles Peskine · 4 years, 4 months ago
  70. e538168 MPI random test: use more iterations for small numbers by Gilles Peskine · 4 years, 4 months ago
  71. ee966c4 Contextualize comment about mbedtls_mpi_random retries by Gilles Peskine · 4 years, 4 months ago
  72. 1a7df4e Fix mbedtls_mpi_random when N has leading zeros by Gilles Peskine · 4 years, 4 months ago
  73. 1e918f4 mbedtls_mpi_random: check for invalid arguments by Gilles Peskine · 4 years, 4 months ago
  74. 02ac93a Move mbedtls_mpi_random to the bignum module by Gilles Peskine · 4 years, 4 months ago
  75. dd57b2f Merge pull request #4445 from TRodziewicz/remove_deprecated_things_-_remainder by Manuel Pégourié-Gonnard · 4 years, 3 months ago
  76. 85dfc4d Applying current changes by TRodziewicz · 4 years, 3 months ago
  77. 18efb73 Remove deprecated functions and constants. by TRodziewicz · 4 years, 3 months ago
  78. 12f93f4 Merge pull request #4407 from ARMmbed/dev3_signoffs by Dave Rodgman · 4 years, 3 months ago
  79. 986b55a Style Fix by Paul Elliott · 4 years, 3 months ago
  80. 7725a63 Fix unchecked return in bignum by Paul Elliott · 4 years, 3 months ago
  81. ee25913 Merge branch 'development' into development_3.0 by Gilles Peskine · 4 years, 4 months ago
  82. 73e3e2c Merge remote-tracking branch 'origin/development' into development_new by Dave Rodgman · 4 years, 4 months ago
  83. 80f5673 Fix and simplify sign handling in mbedtls_mpi_read_string by Gilles Peskine · 4 years, 4 months ago
  84. d520037 Merge pull request #3512 from gilles-peskine-arm/ecp-alloc-202007 by Gilles Peskine · 4 years, 4 months ago
  85. e1bba7c Fix semantically meaningful typos in comments by Gilles Peskine · 4 years, 5 months ago
  86. 4c5819c Move bn_mul.h to library/ by Chris Jones · 4 years, 5 months ago
  87. c8a9177 mbedtls_mpi_sub_abs: fix buffer overflow in error case by Gilles Peskine · 4 years, 6 months ago
  88. a946dcf Merge branch 'development-restricted' into mbedtls-2.25.0r0-pr by Janos Follath · 4 years, 8 months ago
  89. 2536aa7 mbedtls_mpi_div_mpi: directly grow T1 to its useful size by Gilles Peskine · 5 years ago
  90. cd0dbf3 mbedtls_mpi_mul_hlp: no microoptimization by Gilles Peskine · 5 years ago
  91. 8e464c4 mpi_mul_hlp: microoptimization by Gilles Peskine · 5 years ago
  92. 8fd95c6 Perform mbedtls_mpi_mul_int in place if possible by Gilles Peskine · 5 years ago
  93. a5d8d89 Document mpi_mul_hlp by Gilles Peskine · 5 years ago
  94. 1acf7cb Avoid reallocating during subtraction by Gilles Peskine · 5 years ago
  95. 7973e2b Merge pull request #772 from chris-jones-arm/development-restricted by Janos Follath · 4 years, 8 months ago
  96. 89b4130 Fix memory leak in mbedtls_mpi_sub_abs by Gilles Peskine · 5 years ago
  97. 489c058 Merge branch 'development' into development-restricted by Manuel Pégourié-Gonnard · 4 years, 8 months ago
  98. 9246d04 Fix potential DoS by limiting number sizes in exponentiation by Chris Jones · 4 years, 8 months ago
  99. 436400e Handle random generator failure in mbedtls_mpi_fill_random() by Gilles Peskine · 4 years, 8 months ago
  100. 388f9b2 adjusting size of sliding window array to correct size. by Daniel Otte · 5 years ago