ja3 0.5.1

JA3 hash library in Rust
1
2
3
4
5
6
7
8
9
use failure::Fail;

#[derive(Debug, Fail)]
pub enum Ja3Error {
    #[fail(display = "Not a TLS handshake packet")]
    NotHandshake,
    #[fail(display = "Parsing error")]
    ParseError,
}