aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-rtcompat/src/impls/rustls/rustls_server.rs
Commit message (Collapse)AuthorAgeFilesLines
* rtcompat: Allocate the zeroed vector for export_keying_material()David Goulet2026-02-261-1/+1
| | | | | | | | Reason is that Vec::with_capacity(len) doesn't actually allocate and the Rustls export_keying_material() does a .is_empty() check which is under ".len() == 0". Signed-off-by: David Goulet <[email protected]>
* tor-rtcompat: disable rustls session resumptionSteven Engler2026-02-241-1/+10
|
* rtcompat: Return certificates as Cow.Nick Mathewson2026-02-021-4/+5
|
* rtcompat: Improved tls-server key/cert handling.Nick Mathewson2026-02-021-11/+17
| | | | | Now that we can admit to knowing about tor-cert-x509, we can use TlsCertAndKeys to simplify everything.
* rtcompat: Implement TLS server support for rustls.Nick Mathewson2026-01-291-0/+166
Closes #2316.