[][src]Struct ja3::Ja3Hash

pub struct Ja3Hash {
    pub ja3_str: String,
    pub hash: Digest,
    pub source: IpAddr,
    pub destination: IpAddr,
}

The output of a JA3 hash object. This consists of the JA3 string and MD5 hash.

Fields

ja3_str: String

The string consisting of the SSLVersion,Cipher,SSLExtension,EllipticCurve,EllipticCurvePointFormat See the original JA3 specification for more info.

hash: Digest

The MD5 hash of ja3_str.

source: IpAddr

The destination IP address of the TLS handshake.

destination: IpAddr

The source IP address of the TLS handshake.

Trait Implementations

impl Debug for Ja3Hash[src]

impl Display for Ja3Hash[src]

impl Eq for Ja3Hash[src]

impl PartialEq<Ja3Hash> for Ja3Hash[src]

impl StructuralEq for Ja3Hash[src]

Auto Trait Implementations

impl RefUnwindSafe for Ja3Hash

impl Send for Ja3Hash

impl Sync for Ja3Hash

impl Unpin for Ja3Hash

impl UnwindSafe for Ja3Hash

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.