1. 15aa895 Tidy up the DTLS code's blocking-mode retransmits. by David Benjamin · 9 years ago
  2. 585d7a4 Test both synchronous and asynchronous DTLS retransmit. by David Benjamin · 9 years ago
  3. 0d275bd Don't call ERR_clear_system_error in so many places. by David Benjamin · 9 years ago
  4. 4bea850 Lift an impossible check to an assert. by David Benjamin · 9 years ago
  5. e90d004 Remove impossible condition. by David Benjamin · 9 years ago
  6. 0fc7df5 Add SSL_CIPHER_is_DHE. by David Benjamin · 9 years ago
  7. 66af3b0 Adding TLS 1.3 Record Layer. by Steven Valdez · 9 years ago
  8. 3084e7b Adding ECDHE-PSK GCM Ciphersuites. by Steven Valdez · 9 years ago
  9. 686bb19 Add a unit test for one-sided shutdown. by David Benjamin · 9 years ago
  10. bbd43b5 Renaming SSL3_MT_NEWSESSION_TICKET to SSL3_MT_NEW_SESSION_TICKET. by Steven Valdez · 9 years ago
  11. 29270de Split unlock functions into read/write variants. by David Benjamin · 9 years ago
  12. 053931e CECPQ1: change from named curve to ciphersuite. by Matt Braithwaite · 9 years ago
  13. 1cb405d Revert "Forbid calling SSL_read, SSL_peek, and SSL_do_handshake post-shutdown." by Adam Langley · 9 years ago
  14. 494650c Adding TLS 1.3 AEAD construction. by Steven Valdez · 9 years ago
  15. 4f94b1c Adding TLS 1.3 constants. by Steven Valdez · 9 years ago
  16. 1eca1d3 Renaming Channel ID Encrypted Extensions. by Steven Valdez · 9 years ago
  17. 2f87112 Never expose ssl->bbio in the public API. by David Benjamin · 9 years ago
  18. 7e7a82d Rename GetConfigPtr to GetTestConfig. by David Benjamin · 9 years ago
  19. 7fcfd3b Add ISC license to Go files that were missing a license. by Adam Langley · 9 years ago
  20. ce902a9 Generalizing curves to groups in preparation for TLS 1.3. by Steven Valdez · 9 years ago
  21. e25775b Elliptic curve + post-quantum key exchange by Matt Braithwaite · 9 years ago
  22. c82b701 Go version of New Hope post-quantum key exchange. by Matt Braithwaite · 9 years ago
  23. 54092ff Remove dead checks. by David Benjamin · 9 years ago
  24. fce37b0 Add a TODO for why init_buf isn't released post-handshake. by David Benjamin · 9 years ago
  25. 1d64afd Stop reseting init_num everywhere in the handshake loop. by David Benjamin · 9 years ago
  26. 1e6d6df Remove state parameters to ssl3_get_message. by David Benjamin · 9 years ago
  27. a6338be Simplify ssl3_get_message. by David Benjamin · 9 years ago
  28. 4d55961 Unflake Unclean-Shutdown-Alert on Windows. by David Benjamin · 9 years ago
  29. f4ce8e5 Refactor ECDH key exchange to make it asymmetrical by Matt Braithwaite · 9 years ago
  30. c7eae5a Forbid calling SSL_read, SSL_peek, and SSL_do_handshake post-shutdown. by David Benjamin · 9 years ago
  31. ea65e10 Condition the read_close_notify check on type, not shutdown state. by David Benjamin · 9 years ago
  32. fa214e4 Tidy up shutdown state. by David Benjamin · 9 years ago
  33. 8f73135 Consolidate SSL_RECEIVED_SHUTDOWN checks. by David Benjamin · 9 years ago
  34. c032dfa Client auth is only legal in certificate-based ciphers. by David Benjamin · 9 years ago
  35. 060cfb0 Simplify handshake message size limits. by David Benjamin · 9 years ago
  36. c6cc6e7 Make kSRTPProfiles static. by David Benjamin · 9 years ago
  37. 80d1b35 Add a test for SCTs sent on resume. by David Benjamin · 9 years ago
  38. 376a0fe Adding a method to change the initial DTLS retransmission timer value. by Taylor Brandstetter · 9 years ago
  39. d229433 Free any existing SRTP connection profile. by David Benjamin · 9 years ago
  40. e72df93 Add a README.md for ssl/test. by David Benjamin · 9 years ago
  41. e9a3642 Don't reset ssl->shutdown in the state machine. by David Benjamin · 9 years ago
  42. b095f0f Remove the push argument to ssl_init_wbio_buffer. by David Benjamin · 9 years ago
  43. 2730955 Check BIO_flush return value. by David Benjamin · 9 years ago
  44. 30152fd Always buffer DTLS retransmits. by David Benjamin · 9 years ago
  45. 8368050 Clean up ssl_get_compatible_server_ciphers. by David Benjamin · 9 years ago
  46. 3baee2a Banish SSL_add_dir_cert_subjects_to_stack and OPENSSL_DIR_CTX to decrepit. by David Benjamin · 9 years ago
  47. b32a915 Ensure we check i2d_X509 return val by Steven Valdez · 9 years ago
  48. 818aff0 Add SSL_SESSION_get_master_key. by David Benjamin · 9 years ago
  49. 9b611e2 Simplify server_name extension parsing. by David Benjamin · 9 years ago
  50. 4c5ddb8 Set rwstate consistently. by David Benjamin · 9 years ago
  51. c6972eb Remove the no_renegotiation special case. by David Benjamin · 9 years ago
  52. 0d3a8c6 Don't allow alert records with multiple alerts. by David Benjamin · 9 years ago
  53. 4365c3f Send an error rather than assert when decrypt_len != rsa_size. by Daniel Bathgate · 9 years ago
  54. e4c678a Revert "Banish SSL_add_dir_cert_subjects_to_stack and OPENSSL_DIR_CTX to decrepit." by David Benjamin · 9 years ago
  55. 112c4dd Banish SSL_add_dir_cert_subjects_to_stack and OPENSSL_DIR_CTX to decrepit. by David Benjamin · 9 years ago
  56. 9819367 Remove some easy obj.h dependencies. by David Benjamin · 9 years ago
  57. 1e4ae00 Add a comment about final empty extension intolerance. by David Benjamin · 9 years ago
  58. b7c5e84 Fix some malloc test failures. by David Benjamin · 9 years ago
  59. e29ea16 Use ssl3_is_version_enabled to skip offering sessions. by David Benjamin · 9 years ago
  60. baca950 Remove in_handshake. by David Benjamin · 9 years ago
  61. c79845c Move implicit handshake driving out of read_bytes. by David Benjamin · 9 years ago
  62. b2a7318 Switch some 0s to NULLs. by David Benjamin · 9 years ago
  63. d7ac143 Lift the handshake driving in write_bytes up to SSL_write. by David Benjamin · 9 years ago
  64. 282511d Consolidate shutdown state. by David Benjamin · 9 years ago
  65. 270f0a7 Print an error if no tests match in runner. by David Benjamin · 9 years ago
  66. 78f8aab ssl->ctx cannot be NULL. by David Benjamin · 9 years ago
  67. f188f9d Fix typo in function name. by Piotr Sikora · 9 years ago
  68. 9bb8ba6 Make local functions static. by Piotr Sikora · 9 years ago
  69. 594e7d2 Add a test that declining ALPN works. by David Benjamin · 9 years ago
  70. 51545ce Remove a number of unnecessary stdio.h includes. by David Benjamin · 9 years ago
  71. a5177cb Use a less tedious pattern for X509_NAME. by David Benjamin · 9 years ago
  72. 6b6e0b2 Fix a memory leak in ssl3_get_certificate_request. by David Benjamin · 9 years ago
  73. 15c1488 Clear the error queue on entry to core SSL operations. by David Benjamin · 9 years ago
  74. df28c3a Tidy up the client Certificate message skipping slightly. by David Benjamin · 9 years ago
  75. 11d50f9 Include colons in expectedError matches. by David Benjamin · 9 years ago
  76. 454aa4c Rewrite ssl3_send_client_certificate. by David Benjamin · 9 years ago
  77. 0b7ca7d Add tests for doing client auth with no certificates. by David Benjamin · 9 years ago
  78. acb6dcc Add tests for the old client cert callback. by David Benjamin · 9 years ago
  79. a857159 Clean up some silly variable names. by David Benjamin · 9 years ago
  80. 3ed5977 Add an idle timeout to runner.go. by David Benjamin · 9 years ago
  81. 22ce9b2 SSL_set_fd should create socket BIOs, not fd BIOs. by David Benjamin · 9 years ago
  82. 66b2fe8 Add |SSL_CTX_set_private_key_method| to parallel |SSL_set_private_key_method| by Tom Thorogood · 9 years ago
  83. ad004af Rename NID_x25519 to NID_X25519. by David Benjamin · 9 years ago
  84. 154c2f2 Add some missing return false lines to test_config.cc. by David Benjamin · 9 years ago
  85. 4333665 Move AES128 above AES256 by default. by David Benjamin · 9 years ago
  86. fde5afc Remove dead comment. by David Benjamin · 9 years ago
  87. 9867b7d Add an option to record transcripts from runner tests. by David Benjamin · 9 years ago
  88. f2b8363 Fix the tests for the fuzzer mode. by David Benjamin · 9 years ago
  89. bf82aed Disable all TLS crypto in fuzzer mode. by David Benjamin · 9 years ago
  90. 9bea349 Account for Windows line endings in runner. by David Benjamin · 9 years ago
  91. 29ec5d1 Add dummy |SSL_get_server_tmp_key|. by Adam Langley · 9 years ago
  92. d323f4b Bring back |verify_store|. by Adam Langley · 9 years ago
  93. 2b07fa4 Fix a memory leak in an error path. by David Benjamin · 9 years ago
  94. ff3a149 Ensure runner notices post-main stderr output. by David Benjamin · 9 years ago
  95. a14934f Handle shutdown during init/handshake earlier by Steven Valdez · 9 years ago
  96. 95a79ee Add a stub for SSL_get_shared_ciphers(). by Emily Stark · 9 years ago
  97. a211aee Add SSL_CIPHER_has_SHA256_HMAC. by David Benjamin · 9 years ago
  98. d8eea14 BIO_new_mem_buf should take const void * by Steven Valdez · 9 years ago
  99. b9824e2 Handle SSL_shutdown while in init more appropriately by Steven Valdez · 9 years ago
  100. e52d22d Empty SNI names are not valid by Steven Valdez · 9 years ago