1. 7cb9c3d psa: cipher: Move to driver operation context application allocation by Ronald Cron · 4 years, 5 months ago
  2. 6e412a7 psa: cipher: Pass Mbed TLS implementation its operation ctx by Ronald Cron · 4 years, 5 months ago
  3. 937dfee psa: cipher: Re-organize multi-part operation context by Ronald Cron · 4 years, 5 months ago
  4. 49fafa9 psa: cipher: Dispatch based on driver identifier by Ronald Cron · 4 years, 5 months ago
  5. 06aa442 psa: cipher: Remove unused `key_set` operation field by Ronald Cron · 4 years, 5 months ago
  6. dd24c9b psa: Call cipher operations software implementations as a driver by Ronald Cron · 4 years, 8 months ago
  7. 6056fe8 psa: driver wrapper: Change cipher_xyz signature by Ronald Cron · 4 years, 8 months ago
  8. 6d05173 psa: Add mbedtls_psa_cipher_xyz() APIs by Ronald Cron · 4 years, 10 months ago
  9. 0b80559 psa: Call cipher setup implementation as a driver by Ronald Cron · 4 years, 8 months ago
  10. a4af55f psa: driver wrapper: Change cipher_*_setup signatures by Ronald Cron · 4 years, 8 months ago
  11. d6d2888 psa: Add mbedtls_psa_cipher_encrypt/decrypt_setup functions by Ronald Cron · 4 years, 8 months ago
  12. 7986f7e psa: Export "internally" mbedtls_cipher_info_from_psa by Ronald Cron · 4 years, 5 months ago
  13. ab99ac2 psa: Rework psa_cipher_setup (2) by Ronald Cron · 4 years, 10 months ago
  14. 590d3e5 psa: Rework psa_cipher_setup (1) by Ronald Cron · 4 years, 10 months ago
  15. 0ff5795 psa: Add psa_crypto_cipher.[ch] by Ronald Cron · 4 years, 5 months ago
  16. c45b4af Fix PSA SE driver tests by Ronald Cron · 4 years, 10 months ago
  17. 51a3b7d psa: config: Add CAMELLIA to the list of possible CMAC ciphers by Ronald Cron · 4 years, 4 months ago
  18. 9e3926a psa: config: Remove check on ARIA in GCM prerequisites by Ronald Cron · 4 years, 5 months ago
  19. 4501c98 psa: sign: Return INVALID_ARGUMENT instead of NOT_SUPPORTED by Ronald Cron · 4 years, 5 months ago
  20. 3d47181 psa: Add missing PSA configs by Ronald Cron · 4 years, 5 months ago
  21. 71f45ba Fix unused parameter warning in some configurations by Gilles Peskine · 4 years, 5 months ago
  22. a1684f4 PSA: Reject curves that are not enabled in the PSA configuration by Gilles Peskine · 4 years, 5 months ago
  23. d08e538 Merge pull request #4157 from stevew817/dispatch_hash_operations by Gilles Peskine · 4 years, 5 months ago
  24. f8e45a4 Simplify compilation guards around hash driver testing by Steven Cooreman · 4 years, 5 months ago
  25. b6bf4bb Clear up language on zeroizing driver context at setup by Steven Cooreman · 4 years, 5 months ago
  26. aa87fd0 Make driver IDs always visible by Steven Cooreman · 4 years, 5 months ago
  27. 61bb8fc remove superfluous calls to hash_abort by Steven Cooreman · 4 years, 5 months ago
  28. 5e4c18f Reorder the driver wrapper switch-case content by Steven Cooreman · 4 years, 5 months ago
  29. 893232f Ensure the full driver structure is zeroized at setup by Steven Cooreman · 4 years, 5 months ago
  30. fa95295 Don't void actually used arguments by Steven Cooreman · 4 years, 5 months ago
  31. 0f8ffa8 Rename and retype hash test driver context structure by Steven Cooreman · 4 years, 5 months ago
  32. 5f88e77 Move mbedtls_md_info_from_psa into the mbedtls hash driver by Steven Cooreman · 4 years, 5 months ago
  33. a85e2f8 Guard hash test functions as a block by Steven Cooreman · 4 years, 5 months ago
  34. 830aff2 Restructure the way driver contexts are declared by Steven Cooreman · 4 years, 5 months ago
  35. 0d58666 Reuse already-defined MBEDTLS_PSA_BUILTIN_HASH by Steven Cooreman · 4 years, 5 months ago
  36. fbe0928 Set output length to 0 at start of function by Steven Cooreman · 4 years, 5 months ago
  37. f66d5fd Apply same argument checking as in psa_hash_setup by Steven Cooreman · 4 years, 5 months ago
  38. e483a77 Merge pull request #816 from ARMmbed/development by Dave Rodgman · 4 years, 5 months ago mbedtls-2.26.0 v2.26.0
  39. b744990 Fix missed size_t printf by Paul Elliott · 4 years, 5 months ago
  40. d48d5c6 Fix size_t and longlong specifiers for MinGW by Paul Elliott · 4 years, 7 months ago
  41. 3891caf Misc review requested fixes by Paul Elliott · 4 years, 8 months ago
  42. 3a5a107 Correct fix for potential truncation by Paul Elliott · 4 years, 8 months ago
  43. 9e3256a Adding printf format warning flags to makefiles by Paul Elliott · 4 years, 8 months ago
  44. 9f35211 Fixes for invalid printf format specifiers by Paul Elliott · 4 years, 8 months ago
  45. dd9e8f6 Fix potential buffer overflow in printf by Paul Elliott · 4 years, 8 months ago
  46. 4e58970 Declare mbedtls_debug_print_msg as printf-like by Paul Elliott · 4 years, 8 months ago
  47. 83f300e Restructure the hash driver content by Steven Cooreman · 4 years, 5 months ago
  48. 2555522 Rename hash test driver functions to match auto-naming scheme by Steven Cooreman · 4 years, 5 months ago
  49. d029b60 Move test driver hash function declarations to software driver by Steven Cooreman · 4 years, 5 months ago
  50. 4f7d058 Setup internal dependency macros for software hash driver by Steven Cooreman · 4 years, 5 months ago
  51. 0eeb794 Initialize status with CORRUPTION_DETECTED and update fallthrough by Steven Cooreman · 4 years, 5 months ago
  52. 5adf52c Correctly void potentially unused arguments by Steven Cooreman · 4 years, 5 months ago
  53. b177731 Make the driver context union a defined type by Steven Cooreman · 4 years, 5 months ago
  54. f763810 Add test driver for hash operations by Steven Cooreman · 4 years, 5 months ago
  55. c828835 move hash update zero-length-input check back into the core by Steven Cooreman · 4 years, 5 months ago
  56. dbf8ced Change the way driver context structures are used by Steven Cooreman · 4 years, 5 months ago
  57. 8e9e407 Clarify documentation of internal hash software driver interface by Steven Cooreman · 4 years, 5 months ago
  58. 1e58235 Dispatch hashing calls through the driver wrapper layer by Steven Cooreman · 4 years, 6 months ago
  59. 84d670d Make psa_hash_compare go through hash_compute by Steven Cooreman · 4 years, 6 months ago
  60. 0e30764 Split hashing operations out into an mbedTLS hash driver by Steven Cooreman · 4 years, 6 months ago
  61. 17605f0 Merge pull request #4151 from ronald-cron-arm/psa-sign_verify-hash by Manuel Pégourié-Gonnard · 4 years, 5 months ago
  62. 0135516 Merge pull request #4203 from paul-elliott-arm/memsan_fix_build by paul-elliott-arm · 4 years, 5 months ago
  63. bfe7549 Bump version to 2.26.0 by Dave Rodgman · 4 years, 5 months ago
  64. 5cce6a2 Merge branch 'development-restricted' into mbedtls-2.26.0-rc by Dave Rodgman · 4 years, 5 months ago
  65. e252868 Merge pull request #4067 from stevew817/feature/allow_multilength_aead by Gilles Peskine · 4 years, 5 months ago
  66. 1fb691a Remove superfluous check by Steven Cooreman · 4 years, 5 months ago
  67. cd64093 Language & code readability updates by Steven Cooreman · 4 years, 5 months ago
  68. fb91a48 Fix memsan build with clang 11 by Paul Elliott · 4 years, 5 months ago
  69. 477a463 Merge pull request #4168 from stevew817/fix/unreferenced_function_in_ecp_c by Janos Follath · 4 years, 5 months ago archive/origin/remove_deprecated_functions origin/remove_deprecated_functions
  70. bb9cbc7 psa: ecdsa: Prefer NOT_SUPPORTED error code by Ronald Cron · 4 years, 5 months ago
  71. be165bd Code style fixups by Paul Elliott · 4 years, 5 months ago
  72. 9103d49 psa: ecdsa: Rework deterministic support check by Ronald Cron · 4 years, 5 months ago
  73. d0b0ba8 Merge pull request #4173 from gilles-peskine-arm/net_poll-fd_setsize-development by Janos Follath · 4 years, 5 months ago
  74. 566899e psa: Remove outdated comments by Ronald Cron · 4 years, 5 months ago
  75. cbc1355 psa: wrapper: Remove unnecessary compiler warning workarounds by Ronald Cron · 4 years, 5 months ago
  76. 31a876d Clarify some policy-handling code comments by Steven Cooreman · 4 years, 5 months ago
  77. f9f7fdf Rework MAC algorithm / key type validation by Steven Cooreman · 4 years, 5 months ago
  78. 07fa1f1 Fix carelessly copy pasted comment by Paul Elliott · 4 years, 5 months ago
  79. 3ffd134 Fix constant flow mask maths by Paul Elliott · 4 years, 5 months ago
  80. 88f2eb6 Remove multiplication from conditional assignments by Paul Elliott · 4 years, 5 months ago
  81. 4ff9a29 Check truncation length explicitly by Steven Cooreman · 4 years, 5 months ago
  82. 58c94d3 Make psa_get_mac_output_length testable and test it by Steven Cooreman · 4 years, 5 months ago
  83. 7d4b0d7 Reuse PSA_MAC_LENGTH in psa_get_mac_output_length by Steven Cooreman · 4 years, 5 months ago
  84. 5a17267 Add a note about why key_type is required by Steven Cooreman · 4 years, 5 months ago
  85. 1ac5ce3 Make psa_key_policy_algorithm_intersection MAC-length aware by Steven Cooreman · 4 years, 5 months ago
  86. 15472f8 Clean up psa_mac_setup now that we have an output length calculator by Steven Cooreman · 4 years, 5 months ago
  87. 5ad4bf7 Move MAC default length checking into psa_key_policy_permits by Steven Cooreman · 4 years, 5 months ago
  88. 328f11c Language & readability touchups by Steven Cooreman · 4 years, 5 months ago
  89. e538896 Remove unreferenced static functions when ECP_NO_FALLBACK is used by Steven Cooreman · 4 years, 5 months ago
  90. 0544d49 Fix Non CF access to table in base64 decrypt by Paul Elliott · 4 years, 5 months ago
  91. 6e152fa Optimise unneccesary cf table accesses away by Paul Elliott · 4 years, 5 months ago
  92. 717ba77 Fix incorrect assumptions about the size of size_t by Paul Elliott · 4 years, 5 months ago
  93. d788fab Clarify usage of psa_key_policy_permits by Steven Cooreman · 4 years, 5 months ago
  94. a1d8322 Fix typos & copy-paste errors by Steven Cooreman · 4 years, 5 months ago
  95. 7e39f05 Using a wildcard as a specific algorithm now reports invalid argument by Steven Cooreman · 4 years, 5 months ago
  96. ae3f13b Add more test cases and fix AT_LEAST_THIS_LENGTH against base algorithm by Steven Cooreman · 4 years, 5 months ago
  97. d927ed7 Rename _MINIMUM_LENGTH flags to _AT_LEAST_THIS_LENGTH by Steven Cooreman · 4 years, 5 months ago
  98. 7de9e2d Language / verbiage fixes by Steven Cooreman · 4 years, 6 months ago
  99. 5d81481 Rename AEAD WITH_MINIMUM_LENGTH to AT_LEAST_THIS_LENGTH by Steven Cooreman · 4 years, 6 months ago
  100. caad493 rename MAC_WITH_MINIMUM_LENGTH_TAG to AT_LEAST_THIS_LENGTH_MAC by Steven Cooreman · 4 years, 6 months ago