Expand description
Collection of TLS related code fragments that end up popping up everywhere where quic is used. Aggregated here to avoid bugs due to conflicting implementations of the same functionality.
Structs§
- Quic
Client Certificate - Skip
Client Verification - Implementation of [
ClientCertVerifier
] that ignores the server certificate. Yet still checks the TLS signatures. - Skip
Server Verification - Implementation of
ServerCertVerifier
that ignores the server certificate. Yet still checks the TLS signatures. This is useful for turbine (where server verification is not feasible) and for tests Logic mostly copied from rustls examples.