Tony Arcieri
Tony Arcieri
The current implementation uses [ZIP-215](https://zips.z.cash/zip-0215) rules. We've received requests for stricter validation (#380, #623) which correspond to the NIST validation criteria, namely ensuring that the Edwards y-coordinate doesn't overflow the...
It would probably be good for `is_capable_simd` to return false on UEFI targets, which are a bit weird and configured `-mmx,-sse,+soft-floats`. i don't think this is a practical problem for...
This is a tracking issue for redesigning the timeout subsystem in `http` 6.x. It would be good to come up with a new design first, and then PRs implementing it....
The `rustsec` crate (and its v0.29.1 release) are currently locked to `tame-index` >= v0.9.8 https://github.com/rustsec/rustsec/blob/30b098c/rustsec/Cargo.toml#L27 However, v0.9.8 and v0.9.9 have been yanked: https://crates.io/crates/tame-index/versions This results in the following error from...
CVSS v4.0 was released on November 1st, 2023: https://www.first.org/cvss/specification-document#t6 It would be good to add support for it.
https://github.com/rustsec/rustsec/actions/runs/3992756517/jobs/6848877427 ``` failures: ---- auditable_binary_without_vulnerabilities_passes stdout ---- thread 'auditable_binary_without_vulnerabilities_passes' panicked at 'assertion failed: `(left == right)` left: `1`, right: `0`', cargo-audit/tests/binary_scanning.rs:66:5 note: run with `RUST_BACKTRACE=1` environment variable to display a...
I apologize in advance if this question doesn't make sense as I'm still wrapping my brain around Vale/HACL*. We would potentially like to use some of the cryptographic implementations from...
Hi there! I'm writing on behalf of the @RustCrypto org, where we maintain several elliptic curve implementations including an `sm2` crate at https://github.com/RustCrypto/elliptic-curves/tree/master/sm2 It looks like your field implementations are...
As of Rust 1.76, the SHA-256 NEON intrinsics are stable, but the SHA-512 ones are not. See tracking issue here: https://github.com/rust-lang/rust/issues/117225 We currently use `asm!` for both algorithms to "emulate"...