Provide server side extension init and finalisation functions
[openssl.git] / ssl / statem /
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 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-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 some style issues with TLSv1.3 state machine PR
2016-11-23 Matt CaswellFix some style issues identified during review
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 CaswellUpdate state machine to be closer to TLS1.3
2016-11-23 Matt CaswellRemove old style NewSessionTicket from TLSv1.3
2016-11-17 Matt CaswellFix missing SSL_IS_TLS13(s) usage
2016-11-16 Matt CaswellFixed various style issues in the key_share code
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 the key_share processing to the server side
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 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 CaswellAdd server side support for supported_versions extension
2016-11-09 EasySecWhen no SRP identity is found, no error was reported...
2016-11-09 Matt CaswellSwap back to using SSL3_RANDOM_SIZE instead of sizeof...
2016-11-09 Matt CaswellMove setting the session_id_len until after we filled...
2016-11-09 Matt CaswellLoad the sessionid directly in SSLv2 compat ClientHello
2016-11-09 Matt CaswellRename clienthello.version to clienthello.legacy_version
2016-11-09 Matt CaswellFix some minor style issues
2016-11-09 Matt CaswellAdd some function documentation and update some existin...
2016-11-09 Matt CaswellFix make update following extensions refactor
2016-11-09 Matt CaswellImprove some comment documentation following the extens...
2016-11-09 Matt CaswellFix various style issues in the extension parsing refactor
2016-11-09 Matt CaswellFix a memory leak in the ClientHello extension parsing
2016-11-09 Matt CaswellHandle compression methods correctly with SSLv2 compat...
2016-11-09 Matt CaswellRefactor ClientHello processing so that extensions...
2016-11-07 Matt CaswellPartial revert of "Fix client verify mode to check...
2016-11-07 Matt CaswellAlways ensure that init_msg is initialised for a CCS
2016-11-04 Matt CaswellRename all "read" variables with "readbytes"
2016-11-04 Matt CaswellNow that we can use size_t in PACKET lets use it
2016-11-04 Matt CaswellFix misc size_t issues causing Windows warnings in...
2016-11-04 Matt CaswellFix some missed size_t updates
2016-11-04 Matt CaswellResolve some outstanding size_t related TODOs
2016-11-04 Matt CaswellUpdate misc function params in libssl for size_t
2016-11-04 Matt CaswellUpdate cookie_len for size_t
2016-11-04 Matt CaswellUpdate numerous misc libssl fields to be size_t
2016-11-04 Matt CaswellConvert session_id_length and sid_ctx_len to size_t
2016-11-04 Matt CaswellConvert master_secret_size code to size_t
2016-11-04 Matt CaswellConvert libssl writing for size_t
2016-11-04 Matt CaswellFurther libssl size_t-ify of reading
2016-11-02 Matt CaswellAdd the SSL_METHOD for TLSv1.3 and all other base chang...
2016-10-03 Matt CaswellFix linebreaks in the tls_construct_client_certificate...
2016-10-03 Matt CaswellAdd a typedef for the construction function
2016-10-03 Matt CaswellMove setting of the handshake header up one more level
2016-10-03 Matt CaswellRemove the special case processing for finished constru...
2016-10-03 Matt CaswellHarmonise setting the header and closing construction
2016-10-03 Matt CaswellDon't set the handshake header in every message
2016-10-03 Matt CaswellMove init of the WPACKET into write_state_machine()
2016-10-02 Matt CaswellRename ssl_set_handshake_header2()
2016-10-02 Dr. Stephen Hensonfix memory leak
2016-09-29 Matt CaswellConvert NewSessionTicket construction to WPACKET
2016-09-29 Matt CaswellConvert CertStatus message construction to WPACKET
2016-09-29 Matt CaswellConvert SeverDone construction to WPACKET
2016-09-29 Matt CaswellFix missing NULL checks in NewSessionTicket construction
2016-09-29 Matt CaswellFix an mis-matched function code so that "make update...
2016-09-29 Matt CaswellAddress style feedback comments
2016-09-29 Matt CaswellFix a bug in CKE construction for PSK
2016-09-29 Matt CaswellConvert ServerKeyExchange construction to WPACKET
2016-09-29 Matt CaswellConvert CertificateRequest construction to WPACKET
2016-09-29 Matt CaswellAddress style feedback comments
2016-09-29 Matt CaswellConvert ServerHello construction to WPACKET
2016-09-28 Matt CaswellConvert HelloRequest construction to WPACKET
2016-09-26 Matt CaswellFix HelloVerifyRequest construction
2016-09-26 Matt CaswellFix Use After Free for large message sizes
2016-09-22 Matt CaswellConvert HelloVerifyRequest construction to WPACKET
2016-09-22 Rich SalzAdd -Wswitch-enum
2016-09-22 Dmitry BelyavskyAvoid KCI attack for GOST
2016-09-22 Richard LevitteFix error message typo, wrong function code
2016-09-21 Matt CaswellExcessive allocation of memory in dtls1_preprocess_frag...
2016-09-21 Matt CaswellExcessive allocation of memory in tls_get_message_header()
2016-09-21 Matt Caswellmake update and fix some associated mis-matched error...
2016-09-20 Richard LevitteQuiet compiler warning about uninitialised variable
2016-09-20 Matt CaswellConvert WPACKET_put_bytes to use convenience macros
2016-09-20 Matt CaswellConvert CCS construction to WPACKET
2016-09-20 Matt CaswellConvert Finished construction to WPACKET
2016-09-20 Matt CaswellStyle tweaks following review feedback
next