1. 79978df Move aead_{read,write}_ctx and next_proto_negotiated into ssl->s3. by David Benjamin · 9 years ago
  2. 57997da Simplify the ChangeCipherSpec logic. by David Benjamin · 9 years ago
  3. ef1b009 Consider session if the client supports tickets but offered a session ID. by David Benjamin · 9 years ago
  4. 0d56f88 Switch s to ssl everywhere. by David Benjamin · 9 years ago
  5. 4298d77 Implement draft-ietf-tls-curve25519-01 in C. by David Benjamin · 9 years ago
  6. 64d9250 Completely remove P-224 from the TLS stack. by David Benjamin · 9 years ago
  7. fc82512 Convert ssl3_send_cert_verify to CBB. by David Benjamin · 9 years ago
  8. a01deee Make CBB_len relative to its argument. by David Benjamin · 9 years ago
  9. 5ddffbb Make SSL_(CTX_)?set_tmp_ecdh call SSL_(CTX_)?set1_curves. by David Benjamin · 9 years ago
  10. 53e5c2c Remove SSL_(CTX_)?set_ecdh_callback. by David Benjamin · 9 years ago
  11. e9cddb8 Remove SSL_OP_LEGACY_SERVER_CONNECT. by David Benjamin · 9 years ago
  12. 3e052de Tighten SSL_OP_LEGACY_SERVER_CONNECT to align with RFC 5746. by David Benjamin · 9 years ago
  13. 758d127 Add get0 getters for EVP_PKEY. by David Benjamin · 9 years ago
  14. 99fdfb9 Move curve check out of tls12_check_peer_sigalg. by David Benjamin · 9 years ago
  15. 6e80765 Add SSL_get_server_key_exchange_hash. by David Benjamin · 9 years ago
  16. 788be4a Remove the hard-coded SHA-1 exception for sigalgs. by David Benjamin · 9 years ago
  17. c7817d8 Add SSL_CIPHER_get_min_version and tidy up SSL_TLSV1_2 logic. by David Benjamin · 9 years ago
  18. e564a5b |assert| → |OPENSSL_STATIC_ASSERT| where possible. by Matt Braithwaite · 9 years ago
  19. 091c4b9 Add an option to disable NPN on a per-SSL basis. by David Benjamin · 9 years ago
  20. 10a1a9d Update references to the padding draft. by Adam Langley · 9 years ago
  21. d4c2bce Document early callback functions. by David Benjamin · 9 years ago
  22. 5638046 Convert ssl3_send_server_hello to CBB. by David Benjamin · 9 years ago
  23. e8d5350 Convert ssl3_send_client_hello to CBB. by David Benjamin · 9 years ago
  24. c7ce977 Ignore all extensions but renegotiation_info in SSL 3.0. by David Benjamin · 9 years ago
  25. d98dc13 Upstream Android-specific things under |BORINGSSL_ANDROID_SYSTEM| by Adam Langley · 10 years ago
  26. 0d62f26 Adding more options for signing digest fallback. by Steven Valdez · 10 years ago
  27. 62be8ac Skip the SCT and OCSP extensions in ServerHello when resuming sessions. by Paul Lietar · 10 years ago
  28. 9e4e01e Align the SSL stack on #include style. by David Benjamin · 10 years ago
  29. 4fac72e Add server-side support for Signed Certificate Timestamps. by Paul Lietar · 10 years ago
  30. 76c2efc Forbid a server from negotiating both ALPN and NPN. by David Benjamin · 10 years ago
  31. aeeff2c Server-side OCSP stapling support. by Paul Lietar · 10 years ago
  32. 3dd9016 Remove signature algorithm configuration hooks and SSL_ctrl. by David Benjamin · 10 years ago
  33. 2b23d24 Make key exchange strength available. by Sigbjorn Vik · 10 years ago
  34. d6a4ae9 Simplify tls1_channel_id_hash. by David Benjamin · 10 years ago
  35. 9550c3a Decouple the handshake buffer and digest. by David Benjamin · 10 years ago
  36. fc05994 Fold away EC point format negotiation. by David Benjamin · 10 years ago
  37. 0950563 Implement custom extensions. by Adam Langley · 10 years ago
  38. 0a96859 Minor simplification to the padding extension logic. by David Benjamin · 10 years ago
  39. 821464e Remove old 'prepare' extensions functions. by David Benjamin · 10 years ago
  40. 879219b Move the declaration of kSRTPProfiles to ssl/internal.h by Adam Langley · 10 years ago
  41. 33ad2b5 Tidy up extensions stuff and drop fastradio support. by Adam Langley · 10 years ago
  42. 273d49c Convert EC curves extension to the new system by Adam Langley · 10 years ago
  43. bdd5d66 Convert EC point formats extension to the new system by Adam Langley · 10 years ago
  44. 391250d Convert the SRTP extension to the new system by Adam Langley · 10 years ago
  45. 49c7af1 Convert the Channel ID extension to the new system. by Adam Langley · 10 years ago
  46. f18e453 Convert the ALPN extension to the new system by Adam Langley · 10 years ago
  47. ab8d87d Convert the SCT extension to the new system by Adam Langley · 10 years ago
  48. 3570d73 Remove the func parameter to OPENSSL_PUT_ERROR. by David Benjamin · 10 years ago
  49. 7ca4b42 Fix Chromium NaCl build. by David Benjamin · 10 years ago
  50. 97dfcbf Convert the NPN extension to the new system by Adam Langley · 10 years ago
  51. bb0bd04 Convert the status_request (OCSP stapling) extension to the new system by Adam Langley · 10 years ago
  52. 2e857bd Convert the signature algorithms extension to the new system by Adam Langley · 10 years ago
  53. 9b05bc5 Convert the session ticket extension to the new system. by Adam Langley · 10 years ago
  54. 0a05671 Switch EMS over to the new extensions system. by Adam Langley · 10 years ago
  55. efb0e16 Reject empty ALPN protocols. by Adam Langley · 10 years ago
  56. d822ed8 Make CBB_len return a length, not remaining. by David Benjamin · 10 years ago
  57. d1d8078 Fold away certificate slots mechanism. by David Benjamin · 10 years ago
  58. 0fc431a Prune NIDs from TLS_SIGALGS. by David Benjamin · 10 years ago
  59. ba16a1e Remove SSL_get_(shared_)sigalgs. by David Benjamin · 10 years ago
  60. e3aa1d9 Cleanup ticket processing and session lookup. by David Benjamin · 10 years ago
  61. 5021b22 Convert the renegotiation extension to the new system. by Adam Langley · 10 years ago
  62. 4cfa96b Move compile-time asserts to the top-level. by Adam Langley · 10 years ago
  63. 614c66a Add infrastructure for better extension handling. by Adam Langley · 10 years ago
  64. b4d65fd Implement asynchronous private key operations for client auth. by David Benjamin · 10 years ago
  65. fd67aa8 Add SSL_SESSION_from_bytes. by David Benjamin · 10 years ago
  66. 20f6e97 Switch three more renegotiate checks to initial_handshake_complete. by David Benjamin · 10 years ago
  67. 31a0779 Factor SSL_AEAD_CTX into a dedicated type. by David Benjamin · 10 years ago
  68. 4b27d9f Never resume sessions on renegotiations. by David Benjamin · 10 years ago
  69. e6df054 Add s->s3->initial_handshake_complete. by David Benjamin · 10 years ago
  70. 3457cd9 Cast to size_t to avoid MSVC warning. by Adam Langley · 10 years ago
  71. adcc395 Tidy up ticket length checks. by David Benjamin · 10 years ago
  72. 9a727c2 Remove SSL_set_tlsext_debug_callback. by David Benjamin · 10 years ago
  73. 2755a3e Remove unnecessary NULL checks, part 5. by David Benjamin · 10 years ago
  74. dd97878 Always enable ecdh_auto. by David Benjamin · 10 years ago
  75. 55a4364 Handle empty curve preferences from the client. by David Benjamin · 10 years ago
  76. 107db58 Switch cipher masks to uint32_t. by David Benjamin · 10 years ago
  77. f0ae170 Include-what-you-use ssl/internal.h. by David Benjamin · 10 years ago
  78. 2ee94aa Rename ssl_locl.h to internal.h by David Benjamin · 10 years ago
  79. c0f763b Simplify server-side ECDH curve selection. by David Benjamin · 10 years ago
  80. ab2479a Clean up error reporting. by Håvard Molland · 10 years ago
  81. 7061e28 Rename EECDH and EDH to ECDHE and DHE. by David Benjamin · 10 years ago
  82. 61c0d4e Always reset sigalgslen when NULLing sigalgs. by David Benjamin · 10 years ago
  83. b18f024 Minor formatting tweaks. by David Benjamin · 10 years ago
  84. 2fa83de Move handshake method hooks to SSL_PROTOCOL_METHOD. by David Benjamin · 10 years ago
  85. 4c31123 Remove finish_mac_length from SSL3_ENC_METHOD. by David Benjamin · 10 years ago
  86. 9d0847a Add some missing error failure checks. by David Benjamin · 10 years ago
  87. 6eb000d Add in missing curly braces part 3. by David Benjamin · 10 years ago
  88. 6ae7f07 Only send sigalgs extension in 1.2-capable ClientHellos. by David Benjamin · 10 years ago
  89. 78e6978 Disable NPN and Channel ID in DTLS. by David Benjamin · 10 years ago
  90. e9fc3e5 Remove P-521 from the default supported curves list. by David Benjamin · 10 years ago
  91. 70bd80a Remove constraints on curve ID values. by David Benjamin · 10 years ago
  92. 52e5bac Prune away unimplemented curve IDs. by David Benjamin · 10 years ago
  93. 0cb3f5b Switch OBJ_undef uses to NID_undef. by David Benjamin · 10 years ago
  94. d1d7d3d Clear existing extension state. by David Benjamin · 10 years ago
  95. b8a56f1 Remove dead code from EVP_CIPHER codepaths. by David Benjamin · 10 years ago
  96. 41ac979 Add the PRF to SSL3_ENC_METHOD. by David Benjamin · 10 years ago
  97. fcf2583 Reformat the rest of ssl/. by Adam Langley · 10 years ago
  98. e4824e8 Add outgoing messages to the handshake hash at set_handshake_header. by David Benjamin · 10 years ago
  99. 338fcaf Mark SSL3_ENC_METHODs const and remove an unused one. by David Benjamin · 10 years ago
  100. d14c6ee Remove TLSEXT_TYPE_padding ifdef. by David Benjamin · 10 years ago