hash-data

A library and command line tool for identifying hashes.

The main part of this crate is in the build script (build.rs). The build script uses the TOML files in data/ to generate a list of regexes with their matching hash types and uses the fixtures to generate tests.

The TOML files found in data are language agnostic and can be used to build similar libraries in other languages.

Examples

Using the library:

rust assert_eq!(hash_data::parse("$1$42bad211$ums.eDtzK/1711rUkRsd31"), vec!["MD5(Unix)"])

On the command line:

sh $ hash-data '$1$42bad211$ums.eDtzK/1711rUkRsd31' MD5(Unix)

Supported hash types:

License: MIT