1. 879efc3 Switch more things to Array. by David Benjamin · 8 years ago
  2. 08f5c76 Convert more things to Array. by David Benjamin · 8 years ago
  3. cf0ce67 Use Span and Array for the curve list. by David Benjamin · 8 years ago
  4. 499742c Introduce bssl::Array<T> and use it in SSLKeyShare. by David Benjamin · 8 years ago
  5. 15868b3 Revert "Work around a Java client bug when rotating certificates." by David Benjamin · 8 years ago
  6. e58f8a6 Simplify tls1_change_cipher_spec. by David Benjamin · 8 years ago
  7. 60931e2 Explicit fallthrough on switch by Vincent Batts · 8 years ago
  8. 33fc2ba Opaquify SSL_CIPHER. by David Benjamin · 8 years ago
  9. c7d4d21 Add experiment without client CCS and fix session ID bug. by Steven Valdez · 8 years ago
  10. aba057a Work around a Java client bug when rotating certificates. by David Benjamin · 8 years ago
  11. 1682126 Add Experiment 2 by Steven Valdez · 8 years ago
  12. a861460 Make SNI per-connection, not per-session. by David Benjamin · 8 years ago
  13. 74795b3 More miscellaneous bools. by David Benjamin · 8 years ago
  14. 046bc1f SSL3_STATE ints to bools. by David Benjamin · 8 years ago
  15. fd45ee7 Replace bits in SSL_HANDSHAKE with bool. by David Benjamin · 8 years ago
  16. d816874 Set SSL_in_init to false before new_session_cb. by Steven Valdez · 8 years ago
  17. 6abaa31 Remove unnecessary parameter. by David Benjamin · 8 years ago
  18. 3536809 Update style guide for C++. by David Benjamin · 8 years ago
  19. c11ea942 Convert comments in ssl. by David Benjamin · 8 years ago
  20. 398085b Simplify states with hs_wait_t returns. by Steven Valdez · 8 years ago
  21. 4d71a9a Migrate TLS 1.2 and below state machines to the new style. by Steven Valdez · 8 years ago
  22. 302b818 Only enable DTLS post-handshake rexmits if we sent the final Finished. by David Benjamin · 8 years ago
  23. f60bcfb Make SSL_state_string_long work for TLS 1.3. by David Benjamin · 8 years ago
  24. 72912d2 Rotate the default ticket encryption key. by Martin Kreichgauer · 8 years ago
  25. f4ecc84 Prevent both early data and custom extensions from being accepted. by Steven Valdez · 8 years ago
  26. ca9e8f5 Tidy up handshake digest logic. by David Benjamin · 8 years ago
  27. 7934f08 Replace init_msg/init_num with a get_message hook. by David Benjamin · 8 years ago
  28. 8f94c31 Replace reuse_message with an explicit next_message call. by David Benjamin · 8 years ago
  29. ba2d3df Add DTLS_with_buffers_method. by David Benjamin · 8 years ago
  30. e3dee27 Remove the free_buffer parameter to release_current_message. by David Benjamin · 8 years ago
  31. 9bbdf58 Remove expect and received flight hooks. by David Benjamin · 8 years ago
  32. b0c761e Tolerate early ChangeCipherSpec in DTLS. by David Benjamin · 8 years ago
  33. 27e377e Fix miscellaneous clang-tidy warnings. by David Benjamin · 8 years ago
  34. 37af90f Convert a few more scopers. by David Benjamin · 8 years ago
  35. d272dea Explicitly include <new> for placement new. by David Benjamin · 8 years ago
  36. a4cb62f Fix build against LLVM CFI. by David Benjamin · 8 years ago
  37. ee910bf Use new STACK_OF helpers. by David Benjamin · 8 years ago
  38. abbf365 Make the bssl::SealRecord out_suffix arg fixed length. by Martin Kreichgauer · 8 years ago
  39. 9a89250 Don't use std::is_trivially_destructable. by David Benjamin · 8 years ago
  40. 506be38 Add a BORINGSSL_ALLOW_CXX_RUNTIME build flag. by David Benjamin · 8 years ago
  41. e664a53 Return null from SSL_get0_peer_certificates if unauthenticated. by David Benjamin · 8 years ago
  42. c937699 Avoid a C++ runtime dependency. by David Benjamin · 8 years ago
  43. c642aca Convert SSL_ECDH_CTX to C++. by David Benjamin · 8 years ago
  44. 6dc8bf6 Convert SSL_TRANSCRIPT to C++. by David Benjamin · 8 years ago
  45. 31b0c9b Add a bunch of scopers. by David Benjamin · 8 years ago
  46. 8f28886 Give SSL_HANDSHAKE a constructor and destructor. by David Benjamin · 8 years ago
  47. e39ac8f Switch BORINGSSL_INTERNAL_CXX_TYPES in favor of subclassing games. by David Benjamin · 8 years ago
  48. cfc11c2 C++-ify SSL_AEAD_CTX. by David Benjamin · 8 years ago
  49. 86e95b8 Move libssl's internals into the bssl namespace. by David Benjamin · 8 years ago
  50. 3a1dd46 Add async certificate verification callback. by David Benjamin · 8 years ago
  51. 11d11d6 Fix and/or annotate all switch fall-throughs. by Adam Langley · 8 years ago
  52. 9f2bffb Add SSL_AEAD_CTX_seal_scatter. by Martin Kreichgauer · 8 years ago
  53. e64d2c7 Convert ssl_buffer, ssl_cert, and ssl_cipher to C++. by David Benjamin · 8 years ago
  54. 52586f9 Adding TLS 1.3 variant to SSL*. by Steven Valdez · 8 years ago
  55. 520e122 Implement experimental alternate encoding of TLS 1.3. by Steven Valdez · 8 years ago
  56. 8f36c51 Revise version negotiation logic on the C side. by Steven Valdez · 8 years ago
  57. 68161cb Stash the computed version range in SSL_HANDSHAKE. by David Benjamin · 8 years ago
  58. fc08dfc Rename {ssl,ctx}->{min,max}_version. by David Benjamin · 8 years ago
  59. 4414874 Simplify ssl_private_key_* state machine points. by David Benjamin · 8 years ago
  60. 9961dff Unwind V2ClientHello counters. by David Benjamin · 8 years ago
  61. 8d606e3 Clear out f_err pattern from handshake_client.c. by David Benjamin · 8 years ago
  62. e831a81 Adding support for sending early data on the client. by Steven Valdez · 8 years ago
  63. 2f3404b Enforce incrementing counter for TLS 1.2 AES-GCM. by Steven Valdez · 8 years ago
  64. 01f8a8c Convert stack.h to use inline functions. by David Benjamin · 8 years ago
  65. a365138 Factor out the default signature algorithm logic. by David Benjamin · 8 years ago
  66. de254b4 Enforce max_early_data_size on the server. by Alessandro Ghedini · 8 years ago
  67. 7e06de5 Really remove DHE ciphersuites from TLS. by Matthew Braithwaite · 8 years ago
  68. bbba939 Acknowledge KeyUpdate messages. by David Benjamin · 8 years ago
  69. 6952211 Support Ed25519 in TLS. by David Benjamin · 8 years ago
  70. 6114c3c Clean up signature algorithm logic. by David Benjamin · 8 years ago
  71. a232a71 Deprecate SSL_PRIVATE_KEY_METHOD type and max_signature_len. by David Benjamin · 8 years ago
  72. bf833c3 Rename hs->public_key. by David Benjamin · 8 years ago
  73. 67bb45f Support enabling early data on SSL by Alessandro Ghedini · 8 years ago
  74. bbfe603 Clean up end_of_early_data processing. by David Benjamin · 8 years ago
  75. 681eb6a Adding support for receiving early data on the server. by Steven Valdez · 9 years ago
  76. 794cc59 Send half-RTT tickets when negotiating 0-RTT. by David Benjamin · 8 years ago
  77. 3cb1246 Remove session_tickets_sent. by David Benjamin · 8 years ago
  78. 2d85062 Add Data-less Zero-RTT support. by Steven Valdez · 9 years ago
  79. 707af29 Support asynchronous ticket decryption with TLS 1.3. by David Benjamin · 8 years ago
  80. 4c341d0 Support asynchronous ticket decryption with TLS 1.0–1.2. by Adam Langley · 8 years ago
  81. be49706 Rename initial_ctx to session_ctx. by David Benjamin · 8 years ago
  82. 6ad20dc Move error-on-empty-cipherlist into ssl_create_cipher_list(). by Matthew Braithwaite · 8 years ago
  83. 130d529 Adding version to AEAD. by Steven Valdez · 8 years ago
  84. 35ac5b7 Export server-side ticket_age skew. by David Benjamin · 8 years ago
  85. 54689ed Move ssl_verify_alarm_type into ssl_x509.c. by David Benjamin · 8 years ago
  86. 924a352 Remove experimental TLS 1.3 short record header extension. by Steven Valdez · 8 years ago
  87. ad8f5e1 Don't use long for timestamps. by David Benjamin · 8 years ago
  88. 39425b0 Add |TLS_with_buffers_method|. by Adam Langley · 8 years ago
  89. 94a62e6 Hang ssl_auto_chain_if_needed off |X509_METHOD|. by Adam Langley · 8 years ago
  90. 2a3b343 Move X509-related verification code into ssl_x509.c. by Adam Langley · 8 years ago
  91. 0bdef09 Check CA names during the handshake. by Adam Langley · 8 years ago
  92. 34b4c82 Hold CA names as |CRYPTO_BUFFER|s. by Adam Langley · 8 years ago
  93. a57dcfb Add new cipherlist-setting APIs that reject nonsense. by Matthew Braithwaite · 8 years ago
  94. fc02b59 Move tmp.extended_master_secret to SSL_HANDSHAKE. by David Benjamin · 8 years ago
  95. 45738dd Move new_cipher and new_session to SSL_HANDSHAKE. by David Benjamin · 8 years ago
  96. 5960a90 Move sid_ctx from SSL/SSL_CTX to CERT. by David Benjamin · 8 years ago
  97. 83a3212 Move SCT lists and OCSP responses to CERT. by David Benjamin · 8 years ago
  98. 46db7af Remove |X509| things from SSL_SESSION. by Adam Langley · 8 years ago
  99. 908ac19 Moving transcript and PRF functions to SSL_TRANSCRIPT. by Steven Valdez · 9 years ago
  100. 52940c4 Move a number of certificate-related functions from ssl_rsa.c to ssl_cert.c by Adam Langley · 8 years ago