Rust

Rust

Made by DeepSource

Found usage of cryptographically insecure algorithm RS-S1004

Security
Major
cwe-327 owasp top 10

Certain cryptographic algorithms are known to be cryptographically insecure and should be avoided.

Some insecure algorithms from the crypto crate are:

Bad practice

use crypto::{sha1::Sha1, digest::Digest};

let mut hasher = Sha1::new();
hasher.input_str("hello world");

assert_eq!(
    hasher.result_str(),
    "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed"
);

Recommended

use crypto::{sha3::Sha3, digest::Digest};

let mut hasher = Sha3::sha3_256();
hasher.input_str("hello world");

assert_eq!(
    hasher.result_str(),
    "3a985da74fe225b2045c172d6bd390bd855f086e3e9d525b46bfe24511431532"
);

References