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§
- Implementation of [
ClientCertVerifier
] that ignores the server certificate. Yet still checks the TLS signatures. - 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.