Crate pbkdf2_identifier

Source

Modules§

hash_primitive

Functions§

identify_all
Tries to find the iteration count and the hash algorithm of the hash. password - The password of the hash hash - The hash itself salt - The salt used in the derivation max - The maximum number of iteration to try. Use 0 to try until aborted.
identify_iterations
Tries to find the iteration count of the hash knowing its algorithm. password - The password of the hash hash - The hash itself salt - The salt used in the derivation max - The maximum number of iteration to try. Use 0 to try until aborted.
identify_iterations_threaded
Tries to find the iteration count of the hash knowing its algorithm. Takes an shared variable to know when to stop searching. password - The password of the hash hash - The hash itself salt - The salt used in the derivation max - The maximum number of iteration to try. Use 0 to try until aborted. found - Shared variable to notify other threads if the hash has been identified.