Restore the ERR_FATAL_ERROR() macro
[openssl.git] / ssl /
2016-12-12 Matt CaswellFix a leak in SSL_clear()
2016-12-08 Kurt RoeckxOnly call memcpy when the length is larger than 0.
2016-12-08 Matt CaswellFix the declaration of tls_parse_extension in statem_locl.h
2016-12-08 Matt CaswellFix a travis failure
2016-12-08 Matt CaswellFix make update issues
2016-12-08 Matt CaswellFix more style issues following extensions refactor...
2016-12-08 Matt CaswellIntroduce TLSEXT_STATUSTYPE_nothing constant
2016-12-08 Matt CaswellChange TLSEXT_IDX_* values into an enum
2016-12-08 Matt CaswellVarious style updates following extensions refactor
2016-12-08 Matt CaswellFix travis mixed declarations and code error
2016-12-08 Matt CaswellFix a memory leak
2016-12-08 Matt CaswellRemove some spurious whitespace
2016-12-08 Matt CaswellSplit ServerHello extensions
2016-12-08 Matt CaswellMove ServerHello extension parsing into the new extensi...
2016-12-08 Matt CaswellAvoid repeatedly scanning the list of extensions
2016-12-08 Matt CaswellSimplify ClientHello extension parsing
2016-12-08 Matt CaswellMove ALPN processing into an extension finalisation...
2016-12-08 Matt CaswellProvide server side extension init and finalisation...
2016-12-08 Matt CaswellAdd an extension initilisation and finalisation capability
2016-12-08 Matt CaswellMove client construction of ClientHello extensions...
2016-12-08 Matt CaswellMove client parsing of ServerHello extensions into...
2016-12-08 Matt CaswellRename some functions
2016-12-08 Matt CaswellMove ServerHello extension construction into the new...
2016-12-08 Matt CaswellSplit extensions code into core extensions and server...
2016-12-08 Matt CaswellAdd extensions construction support
2016-12-08 Matt CaswellContinue the extensions refactor
2016-12-08 Matt CaswellRefactor ClientHello extension parsing
2016-12-08 Matt CaswellVerify that extensions are used in the correct context
2016-12-08 Matt CaswellAdd some missing extensions to SSL_extension_supported()
2016-12-08 Matt CaswellMove tls_collect_extensions() into a separate file
2016-12-08 Matt CaswellAdd EncryptedExtensions message
2016-12-08 Matt CaswellSend and Receive a TLSv1.3 format ServerHello
2016-12-05 Matt CaswellChange various repeated wr[someindex]/pkt[someindex...
2016-12-05 Matt CaswellVarious style fixes from the TLSv1.3 record changes...
2016-12-05 Matt CaswellChange various repeated rr[someindex] references to...
2016-12-05 Matt CaswellEnsure compressdata is always initialised
2016-12-05 Matt CaswellAdd a TLS1.3 TODO for the msg callback
2016-12-05 Matt CaswellUpdate the record layer to use TLSv1.3 style record...
2016-12-05 Matt CaswellConvert TLS Record receipt to use PACKET
2016-12-05 Matt CaswellConvert TLS record construction to use WPACKET
2016-12-05 Matt CaswellAdd an ability to find out the current write location...
2016-11-29 Matt CaswellFix some style issues in the TLSv1.3 nonce construction...
2016-11-29 Matt CaswellFix a travis compilation error
2016-11-29 Matt CaswellUse the TLSv1.3 nonce construction
2016-11-29 Matt CaswellEnsure we are in accept state in DTLSv1_listen
2016-11-28 Emilia KasperTest mac-then-encrypt
2016-11-24 Matt CaswellFix a bogus uninit var warning
2016-11-23 Matt CaswellFix missing NULL checks in key_share processing
2016-11-23 Matt CaswellFix missing NULL checks in CKE processing
2016-11-23 Matt CaswellUse ClientHello.legacy_version for the RSA pre-master...
2016-11-23 Matt CaswellFix a double ;; causing a travis failure
2016-11-23 Matt CaswellFix some style issues with TLSv1.3 state machine PR
2016-11-23 Matt CaswellFix some style issues identified during review
2016-11-23 Matt CaswellFix SSL_IS_TLS13(s)
2016-11-23 Matt CaswellEnsure unexpected messages are handled consistently
2016-11-23 Matt CaswellEnsure the end of first server flight processing is...
2016-11-23 Matt CaswellCreate the Finished message payload
2016-11-23 Matt CaswellUpdate state machine to be closer to TLS1.3
2016-11-23 Matt CaswellImplement tls13_change_cipher_state()
2016-11-23 Matt CaswellRemove old style NewSessionTicket from TLSv1.3
2016-11-23 Matt CaswellFix EXTMS error introduced by commit 94ed2c6
2016-11-21 Kurt RoeckxMake SSL_read and SSL_write return the old behaviour...
2016-11-17 Kurt RoeckxAdd support for reference counting using C11 atomics
2016-11-17 Matt CaswellFix missing SSL_IS_TLS13(s) usage
2016-11-16 Matt CaswellFix a "defined but not used" warning when enabling...
2016-11-16 Matt CaswellRemove a hack from ssl_test_old
2016-11-16 Matt CaswellFix a typo in a comment
2016-11-16 Matt CaswellMove getting the curvelist for client and server out...
2016-11-16 Matt CaswellFixed various style issues in the key_share code
2016-11-16 Matt CaswellCheck key_exchange data length is not 0
2016-11-16 Matt CaswellEnsure the whole key_share extension is well formatted
2016-11-16 Matt CaswellValidate that the provided key_share is in supported_groups
2016-11-16 Matt CaswellStart using the key_share data to derive the PMS
2016-11-16 Matt CaswellAdd a TLS version consistency check during session...
2016-11-16 Matt CaswellAdd processing of the key_share received in the ServerHello
2016-11-16 Matt CaswellAdd key_share info to the ServerHello
2016-11-16 Matt CaswellUpdate the trace code to know about the key_share extension
2016-11-16 Matt CaswellAdd the key_share processing to the server side
2016-11-16 Matt CaswellGenerate the key_shares extension on the client side
2016-11-15 Rob PercivalCheck that SCT timestamps are not in the future
2016-11-15 Richard LevitteRevert "Remove heartbeats completely"
2016-11-15 Richard LevitteRemove heartbeats completely
2016-11-13 Richard LevitteRemove heartbeat support
2016-11-10 Matt CaswellRename the Elliptic Curves extension to supported_groups
2016-11-09 Matt CaswellAddress some supported_versions review comments
2016-11-09 Matt CaswellRemove some redundant trace code
2016-11-09 Matt CaswellFix some missing checks for TLS1_3_VERSION_DRAFT
2016-11-09 Matt CaswellAdd a TODO(TLS1.3) about renegotation
2016-11-09 Matt CaswellA style tweak based on feedback received
2016-11-09 Matt CaswellLook at the supported_versions extension even if the...
2016-11-09 Matt CaswellEnsure that vent->smeth != NULL before we call vent...
2016-11-09 Matt CaswellAddress some review feedback comments for supported_ver...
2016-11-09 Matt CaswellUpdate TLS1.3 draft version numbers for latest draft
2016-11-09 Matt CaswellAdd server side support for supported_versions extension
2016-11-09 Matt CaswellEnsure that the -trace option can interpret the support...
2016-11-09 Matt CaswellAdd the ability to send the supported_versions extension
2016-11-09 EasySecWhen no SRP identity is found, no error was reported...
2016-11-09 Matt CaswellEnsure the key and iv labels are declared as static
2016-11-09 Matt CaswellAdd support for TLS1.3 secret generation
2016-11-09 Matt CaswellAdd support for initialising WPACKETs from a static...
next