Skip to content
Snippets Groups Projects
  1. Jul 16, 2022
    • ValdikSS's avatar
      Set TLSv1.3 ciphers to preserve ciphersuites order · 1ebdcb8d
      ValdikSS authored
      This commit fixes two issues:
      
      1. ciphers.inc has TLSv1.3 ciphers prefixed with "TXT", while current version has "RFC".
      TLS1_3_RFC_AES_128_GCM_SHA256 should be instead of TLS1_3_TXT_AES_128_GCM_SHA256, in both define and CIPHER() macro.
      
      2. Tor calls only SSL_set_cipher_list() in tlstls_openssl.c, this sets only TLSv1.2 ciphers, while TLSv1.3 ciphers stay in default state.
      TLSv1.3 ciphersuites are set with SSL_set_ciphersuites(), but the list require to contain only TLSv1.3 suites (no v1.2).
      
      Contrary to SSL_set_cipher_list(), TLSv1.3 SSL_set_ciphersuites() does NOT accept finalizing :, so it should be stripped out.
      1ebdcb8d
  2. Jul 05, 2022
  3. Jun 30, 2022
  4. Jun 29, 2022
  5. Jun 23, 2022
  6. Jun 17, 2022
  7. Jun 15, 2022
  8. Jun 02, 2022
  9. May 31, 2022
  10. May 24, 2022
  11. May 22, 2022
  12. May 16, 2022
  13. May 09, 2022
Loading