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 yubihsm

Dependencies

(27 total, 10 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 aes^0.80.8.4up to date
 bitflags^12.6.0out of date
 cbc^0.10.1.2up to date
 ccm^0.50.5.0up to date
 cmac^0.70.7.2up to date
 digest^0.100.10.7up to date
 ecdsa^0.140.16.9out of date
 ed25519^1.32.2.3out of date
 ed25519-dalek ⚠️^12.1.1out of date
 hmac^0.120.12.1up to date
 k256^0.110.13.4out of date
 log^0.40.4.22up to date
 p256^0.110.13.2out of date
 p384^0.110.13.0out of date
 pbkdf2^0.110.12.2out of date
 rand_core^0.60.6.4up to date
 rusb^0.90.9.4up to date
 serde^11.0.210up to date
 serde_json^11.0.132up to date
 sha2^0.100.10.8up to date
 signature^1.3.22.2.0out of date
 subtle^22.6.1up to date
 thiserror^11.0.64up to date
 time^0.30.3.36up to date
 tiny_http^0.110.12.0out of date
 uuid^11.11.0up to date
 zeroize^11.8.1up to date

Dev dependencies

(4 total, 3 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 ed25519-dalek ⚠️^12.1.1out of date
 once_cell^11.20.2up to date
 p256^0.110.13.2out of date
 rsa ⚠️^0.60.9.6insecure

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.

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available, however work is underway to migrate to a fully constant-time implementation.

Workarounds

The only currently available workaround is to avoid using the rsa crate in settings where attackers are able to observe timing information, e.g. local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.