rust_jarm

rust_jarm is a library to compute JARM fingerprint. It is a more or less a direct translation of the original jarm implementation from Python to Rust.

Installation

cargo crate to be created

Usage

rust let host = "some.website.com".to_string(); let port = "443".to_string(); let jarm_hash = Jarm::new(host, port).hash(); println!("JARM hash: {:?}", jarm_hash);

check main.rs for the full example

Contribute

All contributions and/or feedbacks are welcome to improve the code and the package