This project is a port of python project hash-identifier
Identifies the algorithm used to generate the supplied hash
const HashIdentifier = require('hash-identifier');HashIdentifier.checkAlgorithm("ae11fd697ec92c7c98de3fac23aba525");
//output:
// [
//   'MD5',
//   'Domain Cached Credentials - MD4(MD4(($pass)).(strtolower($username)))',
//   'RAdmin v2.x',
//   'NTLM',
//   'MD4',
//   'MD2',
//   'Haval-128',
//   'RipeMD-128',
//   'SNEFRU-128',
//   'Tiger-128'
// ]The output is sorted by the most relevant algorithms
List all supported algorithms
HashIdentifier.supportedAlgorithms()You can use this script in VSCode with the Swissknife extension