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 nimiq-keys

Dependencies

(11 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 beserial^0.20.2.0up to date
 beserial_derive^0.20.2.0up to date
 curve25519-dalek^1.0.24.1.2out of date
 data-encoding^2.12.6.0up to date
 ed25519-dalek ⚠️^1.0.0-pre.12.1.1out of date
 failure^0.10.1.8up to date
 hex^0.30.4.3out of date
 nimiq-hash^0.20.2.0up to date
 nimiq-macros^0.20.2.0up to date
 rand^0.60.8.5out of date
 sha2^0.80.10.8out of date

Security Vulnerabilities

ed25519-dalek: Double Public Key Signing Function Oracle Attack on `ed25519-dalek`

RUSTSEC-2022-0093

Versions of ed25519-dalek prior to v2.0 model private and public keys as separate types which can be assembled into a Keypair, and also provide APIs for serializing and deserializing 64-byte private/public keypairs.

Such APIs and serializations are inherently unsafe as the public key is one of the inputs used in the deterministic computation of the S part of the signature, but not in the R value. An adversary could somehow use the signing function as an oracle that allows arbitrary public keys as input can obtain two signatures for the same message sharing the same R and only differ on the S part.

Unfortunately, when this happens, one can easily extract the private key.

Revised public APIs in v2.0 of ed25519-dalek do NOT allow a decoupled private/public keypair as signing input, except as part of specially labeled "hazmat" APIs which are clearly labeled as being dangerous if misused.