1. 1b370a6 Merge remote-tracking branch 'public/pr/2960' into baremetal by Simon Butcher · 6 years ago
  2. a4b4218 Fix way to access the RNG for ECDSA counter-measures by Manuel Pégourié-Gonnard · 6 years ago
  3. e76c638 Merge remote-tracking branch 'public/pr/2925' into baremetal by Simon Butcher · 6 years ago
  4. 645896e Fix undefined order of volatile access by Manuel Pégourié-Gonnard · 6 years ago
  5. 5b45c6e Merge remote-tracking branch 'public/pr/2932' into baremetal by Simon Butcher · 6 years ago
  6. 83d7881 Make VS compiler happy by Jarno Lamsa · 6 years ago
  7. 231bf52 Fix indentation level in one place by Manuel Pégourié-Gonnard · 6 years ago
  8. e1cb884 Add loop integrity check to curve param check by Manuel Pégourié-Gonnard · 6 years ago
  9. 5c3066a Add double-checking in some critical places by Manuel Pégourié-Gonnard · 6 years ago
  10. 98e1fe0 Add flow control in uECC_vli_equal loop by Manuel Pégourié-Gonnard · 6 years ago
  11. 9d6a535 Return and propagate UECC_FAULT_DETECTED by Manuel Pégourié-Gonnard · 6 years ago
  12. 4d6186b Rename ATTACK_DETECTED to FAULT_DETECTED by Manuel Pégourié-Gonnard · 6 years ago
  13. 2b90961 Add integrity check for curve parameters by Manuel Pégourié-Gonnard · 6 years ago
  14. 1a53371 Remove curve parameter from public functions by Manuel Pégourié-Gonnard · 6 years ago
  15. be5f833 Remove curve parameter from (semi-)internal functions by Manuel Pégourié-Gonnard · 6 years ago
  16. bc3f490 Remove struct curve entirely by Manuel Pégourié-Gonnard · 6 years ago
  17. ffd1399 Move b from curve structure to its own constant by Manuel Pégourié-Gonnard · 6 years ago
  18. a611508 Move G from struct curve to its own constant by Manuel Pégourié-Gonnard · 6 years ago
  19. 356d859 Move n from struct curve to its own constant by Manuel Pégourié-Gonnard · 6 years ago
  20. 4d8777c Move p from curve structure to its own constant by Manuel Pégourié-Gonnard · 6 years ago
  21. 35e535a Remove TinyCrypt config condition in source files by Simon Butcher · 6 years ago
  22. 30833f2 Remove num_n_bits member from curve structure by Manuel Pégourié-Gonnard · 6 years ago
  23. 72c1764 Remove num_bytes member from curve structure by Manuel Pégourié-Gonnard · 6 years ago
  24. 1765933 Remove num_words member from curve structure by Manuel Pégourié-Gonnard · 6 years ago
  25. 1c6f7ea Remove function pointers from curve structure by Manuel Pégourié-Gonnard · 6 years ago
  26. e714332 Add pre and post-validation to mult_safer() by Manuel Pégourié-Gonnard · 6 years ago
  27. 41ab8cb Centralize everything to EccPoint_mult_safer() by Manuel Pégourié-Gonnard · 6 years ago
  28. 72a8c9e Force some compilers to respect volatile reads by Manuel Pégourié-Gonnard · 6 years ago
  29. e6d6f17 Add double-checking of critical value in uECC_verify() by Manuel Pégourié-Gonnard · 6 years ago
  30. 2b6312b Harden return value of uECC_vli_equal() by Manuel Pégourié-Gonnard · 6 years ago
  31. 10d8e8e Use safer return values in uECC_verify() by Manuel Pégourié-Gonnard · 6 years ago
  32. a387700 Merge remote-tracking branch 'public/pr/2876' into baremetal by Simon Butcher · 6 years ago
  33. c881486 Fix off-by-one number of extra operations by Manuel Pégourié-Gonnard · 6 years ago
  34. ad166d8 Also check curve in verify() by Manuel Pégourié-Gonnard · 6 years ago
  35. 9135348 Hardcode numwords in vli_modInv by Manuel Pégourié-Gonnard · 6 years ago
  36. 3e20adf Hardcode numwords in vli_modMult by Manuel Pégourié-Gonnard · 6 years ago
  37. 10349e4 Hardcode numwords in vli_mmod by Manuel Pégourié-Gonnard · 6 years ago
  38. 1b0875d Hardcode numwords in vli_modSub by Manuel Pégourié-Gonnard · 6 years ago
  39. 0779be7 Hardcode numwords in vli_modAdd by Manuel Pégourié-Gonnard · 6 years ago
  40. 5e3baf2 Hardcode numwords in vli_rshift1 by Manuel Pégourié-Gonnard · 6 years ago
  41. 2cb3eea Hardcode numwords in vli_cmp by Manuel Pégourié-Gonnard · 6 years ago
  42. 129b42e Hardcode numwords in vli_sub by Manuel Pégourié-Gonnard · 6 years ago
  43. 2eca3d3 Hardcode numwords in vli_equal by Manuel Pégourié-Gonnard · 6 years ago
  44. a752191 Hardcode numwords in vli_cpm_unsafe by Manuel Pégourié-Gonnard · 6 years ago
  45. cbbb0f0 Hardcode numwords in vli_set() by Manuel Pégourié-Gonnard · 6 years ago
  46. 2bf5a12 Hardcode numwords in semi-internal vli_numBits() by Manuel Pégourié-Gonnard · 6 years ago
  47. 94e4849 Hardcode numwords in semi-internal vli_clear() by Manuel Pégourié-Gonnard · 6 years ago
  48. f3899fc hardcode numwords in semi-internal vli_isZero by Manuel Pégourié-Gonnard · 6 years ago
  49. 02d9d21 Hardcode numwords in internal vli_add by Manuel Pégourié-Gonnard · 6 years ago
  50. 78a7e35 Use macros for number of bits and words by Manuel Pégourié-Gonnard · 6 years ago
  51. c3ec14c Harcode curve in semi-internal modMult function by Manuel Pégourié-Gonnard · 6 years ago
  52. 3645ac9 Start hardcoding curve in internal functions by Manuel Pégourié-Gonnard · 6 years ago
  53. 27926d6 Remove less-safe mult function from public API by Manuel Pégourié-Gonnard · 6 years ago
  54. ef23828 Add ECCPoint_mult_safer() function by Manuel Pégourié-Gonnard · 6 years ago
  55. c78d86b Remove some internal functions that aren't needed by Manuel Pégourié-Gonnard · 6 years ago
  56. 86c4f81 Improve documentation of internal function by Manuel Pégourié-Gonnard · 6 years ago
  57. d5e503e Rename wait_state_t to ecc_wait_state_t by Manuel Pégourié-Gonnard · 6 years ago
  58. d467116 Make wait_state smaller by Manuel Pégourié-Gonnard · 6 years ago
  59. 938f53f Actually use randomized mult when relevant by Manuel Pégourié-Gonnard · 6 years ago
  60. 14ab9c2 Add random delays to multi-precision multiplication by Manuel Pégourié-Gonnard · 6 years ago
  61. 6ee7a4e Validate peer's public key in ECDH by Manuel Pégourié-Gonnard · 6 years ago
  62. 4a658a0 Add projective coordinates randomization in ECDSA by Manuel Pégourié-Gonnard · 6 years ago
  63. 91d7938 Changed every memcpy to SCA equivalent mbedtls_platform_memcpy by Teppo Järvelin · 6 years ago
  64. 7a346b8 Replace memset() with mbedtls_platform_memset() by Manuel Pégourié-Gonnard · 6 years ago
  65. 389b16d Minor changes to tinycrypt README by Simon Butcher · 6 years ago
  66. 05ab732 Typos in the tinycrypt README by Simon Butcher · 6 years ago
  67. 92c3d1f Addition of copyright statements to tinycrypt files by Simon Butcher · 6 years ago
  68. 4f58d69 Add LICENSE and README for tinycrypt by Simon Butcher · 6 years ago
  69. cffedb5 Add SPDX lines to each imported TinyCrypt file by Simon Butcher · 6 years ago
  70. 36ae758 Include Mbed TLS config in tinycrypt compilation units by Hanno Becker · 6 years ago
  71. afdc1b5 Consistently use the name tinycrypt over uecc by Manuel Pégourié-Gonnard · 6 years ago
  72. 4613220 Make compiler happy when MBEDTLS_USE_UECC disabled by Jarno Lamsa · 6 years ago
  73. 5542796 Guard tinycrypt files with MBEDTLS_USE_UECC by Jarno Lamsa · 6 years ago
  74. 187fbb1 Use mbedtls_platform_zeroize in uecc code by Jarno Lamsa · 6 years ago
  75. d50fd6b Remove unused headers from uecc sources by Jarno Lamsa · 6 years ago
  76. 79e3b94 Add CMake support for uecc by Jarno Lamsa · 6 years ago
  77. 18987a4 Add micro-ecc based ecc-files to mbedtls by Jarno Lamsa · 6 years ago