1. a357cf4 Rename new_session_ticket state by Jerry Yu · 3 years, 1 month ago
  2. ce7d76e Merge remote-tracking branch 'mbedtls-restricted/development-restricted' into mbedtls-3.2.0rc0-pr by Ronald Cron · 3 years, 1 month ago
  3. 6e80e09 Merge pull request #5915 from AndrzejKurek/cid-resumption-clash by Paul Elliott · 3 years, 1 month ago
  4. 21b5080 Clarify the need for calling mbedtls_ssl_derive_keys after extension parsing by Andrzej Kurek · 3 years, 1 month ago
  5. bd10c4e Test accessors to config DN hints for cert request by Glenn Strauss · 3 years, 1 month ago
  6. a3115dc Mark static int SSL functions CHECK_RETURN_CRITICAL by Manuel Pégourié-Gonnard · 3 years, 1 month ago
  7. 66b0d61 Add comments when can_do() is safe to use by Manuel Pégourié-Gonnard · 3 years, 1 month ago
  8. 7cf8725 Rearrange the session resumption code by Andrzej Kurek · 3 years, 2 months ago
  9. 8b0ecbc Redo of PR#5345. Fixed spelling and typographical errors found by CodeSpell. by Shaun Case · 3 years, 7 months ago
  10. 8ecd668 Keep raw PSK when set via mbedtls_ssl_conf_psk() and feed as input_bytes by Neil Armstrong · 3 years, 3 months ago
  11. 80f6f32 Make mbedtls_ssl_psk_derive_premaster() only for when MBEDTLS_USE_PSA_CRYPTO is not selected by Neil Armstrong · 3 years, 3 months ago
  12. cd05f0b Drop skip PMS generation for opaque XXX-PSK now Opaque PSA key is always present when MBEDTLS_USE_PSA_CRYPTO selected by Neil Armstrong · 3 years, 3 months ago
  13. e952a30 Remove RAW PSK when MBEDTLS_USE_PSA_CRYPTO is selected by Neil Armstrong · 3 years, 3 months ago
  14. 61f237a Remove PSA-only code dealing with non-opaque PSA key by Neil Armstrong · 3 years, 3 months ago
  15. 99114f3 Fix build flags for opaque/raw psk checks by Przemek Stekiel · 3 years, 3 months ago
  16. b293aaa Enable support for psa opaque DHE-PSK key exchange on the client side by Przemek Stekiel · 3 years, 3 months ago
  17. 19b80f8 Enable support for psa opaque ECDHE-PSK key exchange on the client side by Przemek Stekiel · 3 years, 4 months ago
  18. f2534ba tls12_client: skip PMS generation for opaque RSA-PSK by Przemek Stekiel · 3 years, 4 months ago
  19. 55132c6 Merge pull request #5703 from superna9999/5322-ecdh-remove-legacy-context by Manuel Pégourié-Gonnard · 3 years, 3 months ago
  20. a2da9c7 Merge pull request #5631 from gstrauss/enum-tls-vers by Paul Elliott · 3 years, 3 months ago
  21. 8315811 Remove restrictive proto ver negotiation checks by Glenn Strauss · 3 years, 4 months ago
  22. e3af4cb mbedtls_ssl_(read|write)_version using tls_version by Glenn Strauss · 3 years, 5 months ago
  23. 60bfe60 mbedtls_ssl_ciphersuite_t min_tls_version,max_tls_version by Glenn Strauss · 3 years, 5 months ago
  24. 2dfcea2 mbedtls_ssl_config min_tls_version, max_tls_version by Glenn Strauss · 3 years, 5 months ago
  25. da7851c Rename mbedtls_ssl_session minor_ver to tls_version by Glenn Strauss · 3 years, 5 months ago
  26. 2827502 Remove PSA only code from non-PSA code block code in ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  27. 11d4945 Simplify compile-time PSA/non-PSA ECDH(E) code in ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  28. 1f198d8 Simplify by moving ssl_check_server_ecdh_params in the ECDHE non-PSA compile-time block by Neil Armstrong · 3 years, 4 months ago
  29. 3ea0149 Store TLS1.2 ECDH point format only when USE_PSA_CRYPTO isn't selected by Neil Armstrong · 3 years, 4 months ago
  30. d8419ff Refactor to make PSA and non-PSA ECDH(E) client code exclusive by Neil Armstrong · 3 years, 4 months ago
  31. 927410d Merge pull request #5611 from superna9999/5318-tls-ecdhe-psk by Manuel Pégourié-Gonnard · 3 years, 4 months ago
  32. 1b05aff Merge pull request #5624 from superna9999/5312-tls-server-ecdh by Manuel Pégourié-Gonnard · 3 years, 4 months ago
  33. e18ff95 Get PSK length & check for buffer size before writting in ECHDE-PSK PSA version of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  34. b7ca76b Use intermediate pointer for readability and rename PMS pointer in ECHDE-PSK PSA version of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  35. fc834f2 Introduce content_len_size variable in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  36. 0bdb68a Introduce zlen size variable in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  37. d8420ca Change to more appropriate pointer declaration in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  38. c530aa6 Return PSA translated errors in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  39. b9f319a Remove useless braces in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  40. 2540045 Update comments in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  41. bc5e8f9 Initialize uninitialized variables in ECHDE-PSK part of ssl_write_client_key_exchange() by Neil Armstrong · 3 years, 4 months ago
  42. 868af82 Implement PSA client-side ECDHE-PSK by Neil Armstrong · 3 years, 5 months ago
  43. 91477a7 Switch handshake->ecdh_bits to size_t and remove now useless cast & limit checks by Neil Armstrong · 3 years, 4 months ago
  44. 8fdad9e ssl_tls12_client.c: Remove duplicate of ciphersuite validation by Ronald Cron · 3 years, 4 months ago
  45. 3cffc5c tls: Remove unnecessary checks of MBEDTLS_CIPHERSUITE_NODTLS by Ronald Cron · 3 years, 4 months ago
  46. 7320e64 ssl_tls12_client.c: Switch to generic Client Hello state handler by Ronald Cron · 3 years, 5 months ago
  47. 27c85e7 ssl_tls.c: Unify TLS 1.2 and TLS 1.3 SSL state logs by Ronald Cron · 3 years, 5 months ago
  48. 4079abc ssl_client.c: Adapt extensions writing to the TLS 1.2 case by Ronald Cron · 3 years, 5 months ago
  49. d491c2d ssl_client.c: Adapt ciphersuite writing to TLS 1.2 case by Ronald Cron · 3 years, 5 months ago
  50. 12dcdf0 ssl_tls12_client.c: Move writing of TLS 1.2 specific extensions by Ronald Cron · 3 years, 5 months ago
  51. 4e263fd ssl_tls12_client.c: Simplify TLS version in encrypted PMS by Ronald Cron · 3 years, 5 months ago
  52. 90915f2 ssl_tls12_client.c: Remove some unnecessary checks on TLS minor version by Ronald Cron · 3 years, 5 months ago
  53. de1adee Rename ssl_cli/srv.c by Ronald Cron · 3 years, 5 months ago[Renamed from library/ssl_cli.c]
  54. 9b93c0d Change cookie parameters for dtls and tls 1.3 by XiaokangQian · 3 years, 6 months ago
  55. 068a6b4 ssl_check_server_ecdh_params():Adapt build flags by Przemek Stekiel · 3 years, 5 months ago
  56. 561a423 ssl_parse_signature_algorithm(): refactor PSA CRYPTO code by Przemek Stekiel · 3 years, 5 months ago
  57. d905d33 ssl_write_client_key_exchange(): enable psa support for ECDH-ECDSA and ECDH-RSA key exchange by Przemek Stekiel · 3 years, 5 months ago
  58. ea4000f ssl_parse_signature_algorithm(): populate psa handshake fields when psa crypto is enabled by Przemek Stekiel · 3 years, 5 months ago
  59. a0237f8 Add missing key destruction calls in ssl_write_client_key_exchange by Andrzej Kurek · 3 years, 5 months ago
  60. fb4b647 tls13_only: improve guards of files. by Jerry Yu · 3 years, 6 months ago
  61. c5aef88 tls13_only: guard ssl_{cli,srv}.c with TLS1_2 by Jerry Yu · 3 years, 7 months ago
  62. c3091b1 tls13_only: compile pass by Jerry Yu · 3 years, 7 months ago
  63. e14b644 Merge pull request #5456 from mpg/cleanup-ecdh-psa by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  64. 5d6053f Fix a typo by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  65. ff229cf Add debug message for wrong curve by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  66. 422370d Improve a comment and fix some whitespace by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  67. 141be6c Fix missing check on server-chosen curve by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  68. 3caa0ed Remove dead preprocessor code by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  69. 4a0ac1f Remove mbedtls_psa_tls_ecpoint_to_psa_ec() by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  70. 58d2383 Remove mbedtls_psa_tls_psa_ec_to_ecpoint() by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  71. e511989 Improve a comment by Manuel Pégourié-Gonnard · 3 years, 8 months ago
  72. fb28b88 move client_auth to handshake by Jerry Yu · 3 years, 6 months ago
  73. 24811fb replace check_sig_hash with is_offered by Jerry Yu · 3 years, 6 months ago
  74. f017ee4 merge write sig_alg of tls12 and tls13 by Jerry Yu · 3 years, 7 months ago
  75. 1abd1bc Change write_sig_alg_ext of tls12 by Jerry Yu · 3 years, 7 months ago
  76. 2d0bd32 fix various issues by Jerry Yu · 3 years, 7 months ago
  77. 0e5bcb6 Replace directly access for sig_hashes by Jerry Yu · 3 years, 7 months ago
  78. 18cd439 Align signature_algorithms extension name by Jerry Yu · 3 years, 7 months ago
  79. 9d555ac Remove TLS12 version write_supported_group_ext by Jerry Yu · 3 years, 7 months ago
  80. b47d0f8 Replace SUPPORTED_ELLIPTIC_CURVES with SUPPORTED_GROUPS by Jerry Yu · 3 years, 7 months ago
  81. 69a6342 psa: Fix the size of hash buffers by Ronald Cron · 3 years, 10 months ago
  82. be7b21d Merge branch 'development' into 3649_move_constant_time_functions_into_separate_module by Gabor Mezei · 3 years, 8 months ago
  83. f36e167 Fix alignment by Xiaofei Bai · 3 years, 9 months ago
  84. 6f435f0 Fix compile error by Xiaofei Bai · 3 years, 9 months ago
  85. 58afdba Fix typo and remove wrapper by Xiaofei Bai · 3 years, 9 months ago
  86. 15a5681 TLS1.3 Add hostname extention by Xiaofei Bai · 3 years, 9 months ago
  87. 01f3dae Refactor elliptic curve extension for NamedGroups by Brett Warren · 4 years ago
  88. 90437e3 Rename constant-time functions to have mbedtls_ct prefix by Gabor Mezei · 3 years, 9 months ago
  89. 765862c Move mbedtls_cf_memcmp to a new public header by Gabor Mezei · 3 years, 9 months ago
  90. 4602564 Unify memcmp functions by gabor-mezei-arm · 4 years ago
  91. db9a38c Move contatnt-time memcmp functions to the contant-time module by gabor-mezei-arm · 3 years, 10 months ago
  92. 94180e7 Minor coding style improvement by Joe Subbiani · 4 years ago
  93. 1f6c3ae Tidy up ssl_*.c grouped MBEDTLS_BYTE_x macros by Joe Subbiani · 4 years ago
  94. d068785 Improve documentation and add more uses of MBEDTLS_PUT by Joe Subbiani · 4 years ago
  95. 6dd7364 Replace instances of byte reading macros with PUT by Joe Subbiani · 4 years ago
  96. fbeb692 Use byte reading macros in places not using a byte mask by Joe Subbiani · 4 years ago
  97. 2194dc4 Replace MBEDTLS_CHAR_x with MBEDTLS_BYTE_x by Joe Subbiani · 4 years, 1 month ago
  98. cd84d76 Add Character byte reading macros by Joe Subbiani · 4 years, 1 month ago
  99. 41934dd Share preparatory code between client and server handshake steps by Hanno Becker · 4 years ago
  100. fadbdbb Store TLS version in SSL session structure by Hanno Becker · 4 years ago