This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate snow

Dependencies

(12 total, 1 possibly insecure)

CrateRequiredLatestStatus
 rand_core^0.60.6.4up to date
 subtle^2.42.6.1up to date
 aes-gcm^0.100.10.3up to date
 chacha20poly1305^0.100.10.1up to date
 blake2^0.100.10.6up to date
 sha2^0.100.10.8up to date
 curve25519-dalek ⚠️^44.1.3maybe insecure
 pqcrypto-kyber^0.80.8.1up to date
 pqcrypto-traits^0.30.3.5up to date
 ring^0.170.17.8up to date
 sodiumoxide^0.20.2.7up to date
 byteorder^1.41.5.0up to date

Dev dependencies

(8 total, all up-to-date)

CrateRequiredLatestStatus
 criterion^0.50.5.1up to date
 serde^1.01.0.204up to date
 serde_json^1.01.0.120up to date
 serde_derive^1.01.0.204up to date
 hex^0.40.4.3up to date
 lazy_static^1.41.5.0up to date
 x25519-dalek^2.02.0.1up to date
 rand^0.80.8.5up to date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 rustc_version^0.40.4.0up to date

Security Vulnerabilities

curve25519-dalek: Timing variability in `curve25519-dalek`'s `Scalar29::sub`/`Scalar52::sub`

RUSTSEC-2024-0344

Timing variability of any kind is problematic when working with potentially secret values such as elliptic curve scalars, and such issues can potentially leak private keys and other secrets. Such a problem was recently discovered in curve25519-dalek.

The Scalar29::sub (32-bit) and Scalar52::sub (64-bit) functions contained usage of a mask value inside a loop where LLVM saw an opportunity to insert a branch instruction (jns on x86) to conditionally bypass this code section when the mask value is set to zero as can be seen in godbolt:

A similar problem was recently discovered in the Kyber reference implementation:

https://groups.google.com/a/list.nist.gov/g/pqc-forum/c/hqbtIGFKIpU/m/cnE3pbueBgAJ

As discussed on that thread, one portable solution, which is also used in this PR, is to introduce a volatile read as an optimization barrier, which prevents the compiler from optimizing it away.

The fix can be validated in godbolt here:

The problem was discovered and the solution independently verified by Alexander Wagner [email protected] and Lea Themint [email protected] using their DATA tool:

https://github.com/Fraunhofer-AISEC/DATA