Jacob Hoffman-Andrews

Results 272 issues of Jacob Hoffman-Andrews

Following on from https://github.com/abetterinternet/mod_tls/issues/2. Rustls has a variety of traits for customization by the user: https://docs.rs/rustls/0.19.1/rustls/trait.ResolvesClientCert.html https://docs.rs/rustls/0.19.1/rustls/trait.ResolvesServerCert.html https://docs.rs/rustls/0.19.1/rustls/trait.StoresClientSessions.html https://docs.rs/rustls/0.19.1/rustls/trait.StoresServerSessions.html https://docs.rs/rustls/0.19.1/rustls/trait.ClientCertVerifier.html https://docs.rs/rustls/0.19.1/rustls/trait.ServerCertVerifier.html https://docs.rs/rustls/0.19.1/rustls/trait.ProducesTickets.html https://docs.rs/rustls/0.19.1/rustls/trait.KeyLog.html To provide access to these in C,...

As part of rustls-ffi development, both curl and Apache have reiterated the point that libraries should not panic (or abort) on OOM. [Rust 1.57 stabilized fallible allocation for some types](https://blog.rust-lang.org/2021/12/02/Rust-1.57.0.html#fallible-allocation):...

I recently came across these two methods in `ClientConfig` (and their correspondents in `ServerConfig` that are marked with `#[doc(hidden)]`. But it's not clear to me why. Are they discouraged for...

In https://github.com/rustls/rustls-native-certs/issues/25 we discussed the desirability of using the platform verifier on macOS and Windows instead of trying to extract a set of roots, because distrust of certain roots is...

Many people are of the belief that they need to revoke certificates before deleting them. We should include guidance on the "delete" subcommand (or perhaps the "revoke" subcommand?) that revocation...

area: documentation

For someone evaluating whether to give this exporter a try, it's very useful to know which metrics it makes available.

On reaching the page at https://bors.rust-lang.org/, it's not immediately clear what Homu is or what its relationship is to the bors GitHub bot or the Bors-NG project. Add some verbiage...

When [profiling rustdoc with tera templates](https://github.com/rust-lang/rust/issues/89732#issuecomment-941966478), I see BTreeMap show up a lot. What's the reason for choosing BTreeMap over HashMap here? HashMap might be faster.

When [profiling rustdoc with tera templates](https://github.com/rust-lang/rust/issues/89732#issuecomment-941966478), CallStack::lookup shows up as a consuming a lot of time. When there's a dot in a variable (common in for loops: `{% for p...

HIya! I filed #641 earlier this year, and @Urgau quickly sent a pull request #643 to address it. Thanks so much! I should have been paying closer attention at the...