Tony Arcieri
Tony Arcieri
Right now there's an `Ord` impl on [consensus::State](https://docs.rs/tendermint/0.10.0/tendermint/consensus/state/struct.State.html) which I think needs to be rewritten to better match the [Tendermint consensus spec](https://github.com/tendermint/tendermint/blob/master/docs/spec/consensus/signing.md): ```rust impl Ord for State { fn cmp(&self,...
This is a tracking issue for the [`yubikey-cli`](https://crates.io/crates/yubikey-cli) command-line utility. The goal of this utility is to provide functionality on par with `yubico-piv-tool`, ideally with a better user experience, and...
We need to persist small blobs of data to the eMMC and/or SNVS flash, where small is ~1kB or (much) less. In practice these blobs will be ciphertexts of configuration...
This is a note about how we intend to use AES encryption, and the need for multi-channel support. We're using AES-GCM-SIV, with the goal of performing AES on the DCP/CAAM,...
At a high level, the goal of this project is to make it easy to develop software in Rust which, when compiled, can be independently verified to determine that a...
Manages a Docker container for performing Rust builds: https://github.com/rust-lang/rustwide May potentially be of use for reproducible builds
Adds extremely basic functionality for invoking `cargo build --locked` as `cargo repro build`. Though this may seem fairly pointless in and of itself, the goal of a followup commit would...
Uses a restricted Docker container for performing Rust builds: https://github.com/rust-lang/rustwide May be helpful for (or eliminate the need for) this project.
Pushing this up for posterity... it doesn't seem like `rustwide` is well-suited to use in a development environment, and would be better for things like reproducible builds of released crates.
At a high-level, the goal of this project is to perform cargo builds inside of a sandboxed environment which restricts, to some extent, the capabilities of any code that executes...