est31
est31
The `bytes` crate looks like it has what we need, except that the operations panic if there is an issue instead of returning a `Result`, which isn't optimal.
The issue is if the end of the buffer is reached, which can occur with corrupted data. `bytes` in this instance panics, which is not helpful. Instead, something that returns...
@jerry73204 you meant to link https://github.com/rust-lang/rust/pull/63931 right?
First off, note that, while rarely, sometimes features are unstabilized before they get released, as problems are discovered. In this instance, downloading newer nightlies will break your compilation. Matching on...
@pickfire I'd explain it this way: during a nightly cycle, the features that comprise the new release are being assembled on nightly. The release is considered unfinished. The `#[cfg(version)]` is...
This probably mirrors the experience of others, but cargo-udeps had `cargo install` broken 3 times within a period of 10 days in late February/early March: * Feb 29: https://github.com/est31/cargo-udeps/issues/53 caused...
I suppose one needs to add the license files to the whitelist in Cargo.toml. PRs welcome!
> Does the order matter personally I'd like to keep rcgen as deterministic as possible, so IMO it would be good to have a consistent order. edit: with that I...
Having the ability to add support for unknown algorithms is a different use case from wanting this plugin mechanism to use one specific crypto implementation. I think the best way...
I agee with @djc that we should not narrow the amount of flexibility provided by ring by only providing a seed based API. But we could make the rng trait...