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 signatory

Dependencies

(11 total, 9 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 clear_on_drop^0.20.2.5up to date
 ed25519-dalek ⚠️^0.82.1.1out of date
 generic-array ⚠️^0.91.0.0out of date
 lazy_static^11.4.0up to date
 rand^0.50.8.5out of date
 ring^0.130.17.8out of date
 secp256k1^0.100.29.0out of date
 sha2^0.70.10.8out of date
 sodiumoxide ⚠️^0.10.2.7out of date
 untrusted^0.60.9.0out of date
 yubihsm^0.140.42.1out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 criterion^0.20.5.1out of date

Security Vulnerabilities

sodiumoxide: generichash::Digest::eq always return true

RUSTSEC-2019-0026

PartialEq implementation for generichash::Digest has compared itself to itself.

Digest::eq always returns true and Digest::ne always returns false.

generic-array: arr! macro erases lifetimes

RUSTSEC-2020-0146

Affected versions of this crate allowed unsoundly extending lifetimes using arr! macro. This may result in a variety of memory corruption scenarios, most likely use-after-free.

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.