1. 8c010eb Fix comments, code style, remove debug code by Przemyslaw Stekiel · 3 years, 6 months ago
  2. 6b2eedd ssl_msg.c: add debug code for psa failures by Przemyslaw Stekiel · 3 years, 6 months ago
  3. d66387f Init psa status to PSA_ERROR_CORRUPTION_DETECTED by Przemyslaw Stekiel · 3 years, 6 months ago
  4. f4facef Adapt ssl_decrypt_non_etm_cbc() test for psa crypto and remove redundant test cases by Przemyslaw Stekiel · 3 years, 6 months ago
  5. b97556e mbedtls_ssl_encrypt/decrypt_buf: remove dead code by Przemyslaw Stekiel · 3 years, 6 months ago
  6. f9cd608 ssl_tls1X_populate_transform(): import psa keys only if alg is not MBEDTLS_SSL_NULL_CIPHER by Przemyslaw Stekiel · 3 years, 6 months ago
  7. 77aec8d Rename ssl_psa_status_to_mbedtls->psa_ssl_status_to_mbedtls by Przemyslaw Stekiel · 3 years, 6 months ago
  8. be47ecf mbedtls_ssl_get_record_expansion: use same condidion set as for non-psa build by Przemyslaw Stekiel · 3 years, 6 months ago
  9. 2c87a20 ssl_write_encrypt_then_mac_ext(): adapt to psa crypto by Przemyslaw Stekiel · 3 years, 6 months ago
  10. 89dad93 Rename psa_status_to_mbedtls->ssl_psa_status_to_mbedtls and add conversion for PSA_ERROR_INVALID_SIGNATURE by Przemyslaw Stekiel · 3 years, 6 months ago
  11. 2cb59df ssl-opt.sh: remove cipher context assertions (redundant when psa crypto is enabled) by Przemyslaw Stekiel · 3 years, 6 months ago
  12. 399ed51 Fix condition in mbedtls_ssl_get_record_expansion by Przemyslaw Stekiel · 3 years, 6 months ago
  13. e5c2238 Move mbedtls_ssl_cipher_to_psa() and psa_status_to_mbedtls() defs out of MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED build flag by Przemyslaw Stekiel · 3 years, 6 months ago
  14. 4a36dd3 ssl test ssl_decrypt_non_etm_cbc(): add missing ret check by Przemyslaw Stekiel · 3 years, 6 months ago
  15. f4ca3f0 ssl test build_transforms(): in psa mode distinguish encrypt/decrypt keys by Przemyslaw Stekiel · 3 years, 6 months ago
  16. f57b456 Rename tls_mbedtls_cipher_to_psa() to be consistent with function naming convention. by Przemyslaw Stekiel · 3 years, 6 months ago
  17. 1d71447 mbedtls_ssl_get_record_expansion: rework switch statement for psa by Przemyslaw Stekiel · 3 years, 6 months ago
  18. e884778 Adapt the mbed tls mode: ccm or gcm or cachapoly to psa version by Przemyslaw Stekiel · 3 years, 6 months ago
  19. f4b3f08 test_suite_ssl.data: remove redundant test cases(short tag + GCM) by Przemyslaw Stekiel · 3 years, 7 months ago
  20. 221b527 ssl_msg.c: fix parm in call to mbedtls_ssl_decrypt_buf() by Przemyslaw Stekiel · 3 years, 7 months ago
  21. 5b2de0c test_suite_ssl.data: remove redundant test cases by Przemyslaw Stekiel · 3 years, 7 months ago
  22. 93cf4ee Adapt test_suite_ssl for psa crypto by Przemyslaw Stekiel · 3 years, 7 months ago
  23. 9b22c2b Rename: mbedtls_cipher_to_psa -> tls_mbedtls_cipher_to_psa by Przemyslaw Stekiel · 3 years, 7 months ago
  24. 6be9cf5 Cleanup the code by Przemyslaw Stekiel · 3 years, 7 months ago
  25. d4eab57 Skip psa encryption/decryption for null cipher by Przemyslaw Stekiel · 3 years, 7 months ago
  26. ce09e7d Use psa_status_to_mbedtls() for psa error case by Przemyslaw Stekiel · 3 years, 7 months ago
  27. fe7397d Fix key attributes encrypt or decrypt only (not both) by Przemyslaw Stekiel · 3 years, 7 months ago
  28. dd7b501 Move PSA init after taglen is set by Przemyslaw Stekiel · 3 years, 7 months ago
  29. e87475d Move psa_status_to_mbedtls to ssl_misc.h by Przemyslaw Stekiel · 3 years, 7 months ago
  30. 8398a67 Fix description of the translation function by Przemyslaw Stekiel · 3 years, 7 months ago
  31. 1fe065b Fix conditional compilation (MBEDTLS_USE_PSA_CRYPTO) by Przemyslaw Stekiel · 3 years, 7 months ago
  32. 2e9711f mbedtls_ssl_decrypt_buf(): replace mbedtls_cipher_crypt() and mbedtls_cipher_auth_decrypt_ext() with PSA calls by Przemyslaw Stekiel · 3 years, 7 months ago
  33. b37fae1 mbedtls_ssl_encrypt_buf(): replace mbedtls_cipher_crypt() and mbedtls_cipher_auth_encrypt_ext() with PSA calls by Przemyslaw Stekiel · 3 years, 7 months ago
  34. 76e1583 Convert psa status to mbedtls by Przemyslaw Stekiel · 3 years, 7 months ago
  35. 11a33e6 Use PSA_BITS_TO_BYTES macro to convert key bits to bytes by Przemyslaw Stekiel · 3 years, 7 months ago
  36. ae77b0a mbedtls_ssl_tls13_populate_transform: store the en/decryption keys and alg in the new fields by Przemyslaw Stekiel · 3 years, 7 months ago
  37. ffccda4 ssl_tls12_populate_transform: store the en/decryption keys and alg in the new fields by Przemyslaw Stekiel · 3 years, 7 months ago
  38. ce37d11 mbedtls_ssl_transform_free(): fix destruction of psa keys by Przemyslaw Stekiel · 3 years, 7 months ago
  39. 8f80fb9 Adapt in mbedtls_ssl_transform_init() and mbedtls_ssl_transform_free() after extending mbedtls_ssl_transform struct by Przemyslaw Stekiel · 3 years, 7 months ago
  40. 44187d7 Extend mbedtls_ssl_transform struct for psa keys and alg by Przemyslaw Stekiel · 3 years, 7 months ago
  41. 430f337 Add helper function to translate mbedtls cipher type/mode pair to psa: algorithm, key type and key size. by Przemyslaw Stekiel · 3 years, 7 months ago
  42. a9f32fb Merge pull request #5382 from lhuang04/tls13_f_export_keys by Paul Elliott · 3 years, 6 months ago
  43. 24b781d Merge pull request #5473 from mpg/rm-dead-code by Gilles Peskine · 3 years, 6 months ago
  44. f7d704d Avoid dead code in some configurations by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  45. a3890a3 Swap the client and server random for TLS 1.3 by lhuang04 · 3 years, 7 months ago
  46. fedefdd Merge pull request #5276 from xkqian/add_hello_retry_request by Ronald Cron · 3 years, 6 months ago
  47. 8499b6c Only free verify_cookie in tls 1.3 case. by XiaokangQian · 3 years, 6 months ago
  48. a909061 Refine HRR parse successfully message in test cases by XiaokangQian · 3 years, 6 months ago
  49. 3490974 Change cookie free code and some comments by XiaokangQian · 3 years, 6 months ago
  50. 52da558 Change code base on comments by XiaokangQian · 3 years, 6 months ago
  51. aec1f3e Cookie fields are used only by DTLS 1.3 by XiaokangQian · 3 years, 6 months ago
  52. 7bae3b6 Add more ciphersuites into test cases for hrr by XiaokangQian · 3 years, 6 months ago
  53. b119a35 Refine fatal alert in parse_server_hello by XiaokangQian · 3 years, 6 months ago
  54. d59be77 Refine code based on comments by XiaokangQian · 3 years, 6 months ago
  55. 0ece998 Refine code in mbedtls_ssl_reset_transcript_for_hrr by XiaokangQian · 3 years, 6 months ago
  56. f1e7d12 Fix compile issues in mbedtls_ssl_session_reset_msg_layer by XiaokangQian · 3 years, 7 months ago
  57. 43550bd Prepare function to parse hrr cookie extension by XiaokangQian · 3 years, 7 months ago
  58. 2b01dc3 Add hrr no change check and allign mbedtls_ssl_session_reset_msg_layer by XiaokangQian · 3 years, 7 months ago
  59. 355e09a Change code base on comments by XiaokangQian · 3 years, 7 months ago
  60. 78b1fa7 Update code base on comments by XiaokangQian · 3 years, 7 months ago
  61. 53f20b7 Improve ssl_tls13_parse_server_hello by XiaokangQian · 3 years, 7 months ago
  62. 6db08dd Change ssl-opt.sh to make hrr tests pass by XiaokangQian · 3 years, 7 months ago
  63. d9e068e Change code based on comments by XiaokangQian · 3 years, 7 months ago
  64. 8945db3 Reduce paramter hrr from ssl_tls13_parse_server_hello by XiaokangQian · 3 years, 7 months ago
  65. b48894e Add buffer check for named group by XiaokangQian · 3 years, 7 months ago
  66. 16acd4b Reject the second HRR earlier and align naming styles by XiaokangQian · 3 years, 7 months ago
  67. b851da8 Re-construct the code to merge hello and hrr based on comments by XiaokangQian · 3 years, 7 months ago
  68. 0b56a8f Replace curve_list with group_list and add update test scripts by XiaokangQian · 3 years, 8 months ago
  69. 51eff22 Align oode style with server hello parse by XiaokangQian · 3 years, 8 months ago
  70. 647719a Add hello retry request in client side by XiaokangQian · 3 years, 8 months ago
  71. f51b79c Merge pull request #5355 from yuhaoth/pr/remove-duplicate-sig-alg-ext by Ronald Cron · 3 years, 6 months ago
  72. ed5e9f4 Change ecdsa sig_algs order for tls1.3 by Jerry Yu · 3 years, 6 months ago
  73. 3de9d3a Merge pull request #5455 from AndrzejKurek/gitignore-eclipse by Gilles Peskine · 3 years, 6 months ago
  74. cfb1518 Merge pull request #5457 from AndrzejKurek/key-id-encodes-owner-psa-fixes-follow-up by Gilles Peskine · 3 years, 6 months ago
  75. c6753a6 Merge pull request #5363 from AndrzejKurek/clarify-testing-set-nonce-set-lengths by Gilles Peskine · 3 years, 6 months ago
  76. 9d95d81 Merge pull request #5359 from hanno-arm/mpi_montmul_remove_dead_code by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  77. 24479b3 Merge pull request #5395 from gilles-peskine-arm/ssl-opt-self-signed-positive by Manuel Pégourié-Gonnard · 3 years, 6 months ago
  78. cfc920a Remove incorrect incompatibility information from mbedtls_config.h by Andrzej Kurek · 3 years, 6 months ago
  79. 36fd329 Add eclipse-specific project files to gitignore by Andrzej Kurek · 3 years, 6 months ago
  80. 0b994b8 fix typo error by Jerry Yu · 3 years, 6 months ago
  81. 5303789 change the defaut sig_algs order by Jerry Yu · 3 years, 6 months ago
  82. 18c833e fix tls1_2 only sig_algs order issue by Jerry Yu · 3 years, 6 months ago
  83. f377d64 Refactor duplicate check by Jerry Yu · 3 years, 6 months ago
  84. 6ade743 Add mbedtls_printf alias for !PLATFORM_C by Jerry Yu · 3 years, 6 months ago
  85. 370e146 fix comments issues by Jerry Yu · 3 years, 6 months ago
  86. 909df7b Refactor *_sig_algs tables by Jerry Yu · 3 years, 7 months ago
  87. b476a44 Add static assert check by Jerry Yu · 3 years, 7 months ago
  88. 9719885 fix coding style issues by Jerry Yu · 3 years, 7 months ago
  89. 941e07f fix test_no_platform fail by Jerry Yu · 3 years, 7 months ago
  90. 1a8b481 Remove duplicated signature algorithm in default settings by Jerry Yu · 3 years, 7 months ago
  91. 600ded7 Reserve end tag space at sig_algs_len init. by Jerry Yu · 3 years, 7 months ago
  92. a68dca2 move overflow inside loop by Jerry Yu · 3 years, 7 months ago
  93. 8afd6e4 fix typo issues in comments by Jerry Yu · 3 years, 7 months ago
  94. eb821c6 remove check_sig_hash by Jerry Yu · 3 years, 7 months ago
  95. 24811fb replace check_sig_hash with is_offered by Jerry Yu · 3 years, 7 months ago
  96. 1bab301 Add signature algorithm supported check by Jerry Yu · 3 years, 7 months ago
  97. 7ddc38c fix various issues by Jerry Yu · 3 years, 7 months ago
  98. 4131ec1 Add signature algorithm length check by Jerry Yu · 3 years, 7 months ago
  99. a69269a change sig_algs_len unit to byte by Jerry Yu · 3 years, 7 months ago
  100. 713013f fix various issues by Jerry Yu · 3 years, 7 months ago