commit | 7e427ee26c83f243ca49c2c5fabbc6b004a4d21c | [log] [tgz] |
---|---|---|
author | davidben <davidben@google.com> | Wed Nov 20 14:13:34 2024 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Nov 20 14:14:30 2024 -0800 |
tree | d63a7747b8ab31bcc73c538bd059fc44a119dd7a | |
parent | bbd2d8c8890f3c21f268e9037b0e23dbc64d58e0 [diff] |
Remove ResumptionAttempted assertion in TlsServerHandshakerTest.ResumptionWithPlaceholderTicket This is a bit of a mess. QUICHE started sending a placeholder ticket when ticket encryption failed, because it used to return an empty string, which was not actually valid. However, the flag was not consistently enabled, so sometimes the test ran with the old empty string. BoringSSL happened not to notice, but newer BoringSSL clients catch this. However, newer BoringSSL servers, as of https://boringssl.googlesource.com/boringssl/+/c59bf8bf189dcbde868e04efcd53b705ed155231, now also support empty string as a signal to skip sending a ticket. That is actually the ideal behavior for QUICHE in this situation. However, the tests actually reject the ideal behavior because they assert that `ResumptionAttempted()` is true. Remove the assertion so that QUICHE, with the flag on or off, is compatible with the newest BoringSSL. PiperOrigin-RevId: 698517697
QUICHE stands for QUIC, Http, Etc. It is Google‘s production-ready implementation of QUIC, HTTP/2, HTTP/3, and related protocols and tools. It powers Google’s servers, Chromium, Envoy, and other projects. It is actively developed and maintained.
There are two public QUICHE repositories. Either one may be used by embedders, as they are automatically kept in sync:
To embed QUICHE in your project, platform APIs need to be implemented and build files need to be created. Note that it is on the QUICHE team's roadmap to include default implementation for all platform APIs and to open-source build files. In the meanwhile, take a look at open source embedders like Chromium and Envoy to get started:
To contribute to QUICHE, follow instructions at CONTRIBUTING.md.
QUICHE is only supported on little-endian platforms.