pub trait CrackTarget: 'static + Eq + Send + Sync + Debug { }
Expand description

Common trait for crack targets (hashes or plain text to crack). This is the super-type which enables the usage of multiple hashing algorithms. An example that implements this/fulfils the trait requirements is String.

Implementors