summaryrefslogtreecommitdiff
path: root/lib/libssl
AgeCommit message (Expand)Author
2020-03-16Consistently spell 'unsigned' as 'unsigned int', as style(9) seemsTheo Buehler
2020-03-16The RFC is clear (section 5.3) that sequence number should never wrap.Theo Buehler
2020-03-13Remove dtls1_enc().Joel Sing
2020-03-13Correct TLSv1.3 sequence number increment and wrapping check.Joel Sing
2020-03-13Ensure that CBB_add_space() always provides zeroed memory.Joel Sing
2020-03-12Use calloc() rather than malloc() when allocating initial CBB buffer.Joel Sing
2020-03-12Use calloc() rather than malloc() when allocating buffers.Joel Sing
2020-03-12Stop overloading the record type for padding length.Joel Sing
2020-03-12Use internal versions of SSL3_BUFFER, SSL3_RECORD and DTLS1_RECORD_DATA.Joel Sing
2020-03-10Use ctx->hs->secrets rather than the S3I(s) version.Joel Sing
2020-03-10Remove some unnecessary handshake enums/functions.Joel Sing
2020-03-10Add a return value check to tls13_buffer_extend().Joel Sing
2020-03-10Remove the enc function pointers.Joel Sing
2020-03-06RFC 8446, section 4.1.3: If a TLSv1.2 client receives a ServerHello forTheo Buehler
2020-03-06TLSv1.3 servers that intend to downgrade are required to set the lastTheo Buehler
2020-02-23The decryption_failed alert must not be sent by compliant implementations.Theo Buehler
2020-02-23According to RFC 8446, Section 4.4.4, recipients of incorrect FinishedTheo Buehler
2020-02-21Remove the s2n macro now that it is finally unused.Joel Sing
2020-02-21Convert the SSL/TLS record creation code to CBB.Joel Sing
2020-02-21Convert the DTLS header creation code to CBB.Joel Sing
2020-02-21Remove some commented code, remove some pointless comments and move someJoel Sing
2020-02-21Convert dtls1_build_sequence_number() to CBB.Joel Sing
2020-02-21Move l2n/l2n8 into s3_cbc.c, since this is the only code that uses it.Joel Sing
2020-02-21Remove prefix_len, since it is always zero.Joel Sing
2020-02-21Remove now unused variable.Joel Sing
2020-02-19Refactor do_ssl3_write().Joel Sing
2020-02-18drop unused include <openssl/curve25519.h>Theo Buehler
2020-02-16Avoid potential NULL dereference when parsing a server keyshare extension.Joel Sing
2020-02-16Avoid leak for tmp.x25519Kinichiro Inoguchi
2020-02-15Move the TLSv1.3 code that interfaces with the legacy APIs/stack into aJoel Sing
2020-02-15Remove #include that is not needed.Joel Sing
2020-02-06Re-enable the TLSv1.3 client since the known issues have been addressed.Joel Sing
2020-02-06Add a workaround to make SSL_set_session() work with TLSv1.3.Joel Sing
2020-02-06Add support for handling hello retry requests in the TLSv1.3 client.Joel Sing
2020-02-06Correctly handle key share extensions in a hello retry request.Joel Sing
2020-02-05Refactor the server hello processing code in the TLSv1.3 client.Joel Sing
2020-02-05Remove the hello retry request processing code that was previously added.Joel Sing
2020-02-05Provide tls1_transcript_unfreeze() to avoid the need for manual flagsJoel Sing
2020-02-05Pull the handshake message transcript code into its own function.Joel Sing
2020-02-05Rework tls13_legacy_handshake_message_{recv,sent}_cb() to useTheo Buehler
2020-02-04Add support for TLSv1.3 key shares with secp256r1 and secp384r1 groups.Joel Sing
2020-02-04Free the transcript as soon as we initialise the transcript hash.Joel Sing
2020-02-01Correctly unpack client key shares.Joel Sing
2020-02-01Disable TLSv1.3 client while some known issues are being addressed.Joel Sing
2020-01-30Provide struct/functions for handling TLSv1.3 key shares.Joel Sing
2020-01-30Factor out/rewrite the ECDHE EC point key exchange code.Joel Sing
2020-01-29Remove dead prototypes.Joel Sing
2020-01-29If the TLSv1.3 code has not recorded an error and something already existsJoel Sing
2020-01-29Remove unused stub implementation of tls13_accept(). The correctTheo Buehler
2020-01-26Fix SSL_CIPHER_descriptionKinichiro Inoguchi