https://github.com/k4m4/hash-detector-cli
Detect the possible hash-types corresponding to a string, right from your terminal.
https://github.com/k4m4/hash-detector-cli
detector hash hash-functions identifier md5 regex sha
Last synced: 5 months ago
JSON representation
Detect the possible hash-types corresponding to a string, right from your terminal.
- Host: GitHub
- URL: https://github.com/k4m4/hash-detector-cli
- Owner: k4m4
- License: mit
- Created: 2018-03-26T10:21:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:14:04.000Z (almost 3 years ago)
- Last Synced: 2025-04-22T09:13:08.061Z (6 months ago)
- Topics: detector, hash, hash-functions, identifier, md5, regex, sha
- Language: JavaScript
- Homepage:
- Size: 300 KB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# hash-detector-cli [](https://travis-ci.org/k4m4/hash-detector-cli)
> Detect the possible hash-types corresponding to a string, right from your terminal.
---
## Install
```
~ ❯❯❯ npm install -g hash-detector-cli
```## Usage
```
~ ❯❯❯ hash-detect --helpDetect hashes in a string.
Usage
~ ❯❯❯ hash-detect
~ ❯❯❯ echo | hash-detect
~ ❯❯❯ cat | hash-detect
Options
-p, --plain Display output without log symbols
Example
~ ❯❯❯ hash-detect 17413f944145f37dcaa9bc55d9a201a248a08aae
✔ SHA-1, RIPEMD, Tiger, HAVAL-160, HAS-160
```## Supported Hashes
- `MD2`, `MD4`, `MD5`, `MD6`
- `SHA-1`, `SHA-224`, `SHA-256`, `SHA-384`, `SHA-512`
- `HAVAL-128`, `HAVAL-160`, `HAVAL-192`, `HAVAL-224`, `HAVAL-256`
- `Tiger`, `Tiger-128`, `Tiger-192`
- `RIPEMD`, `RIPEMD-180`, `RIPEMD-256`, `RIPEMD-320`
- `Snerfu-128`, `Snerfu-256`
- `Streebog-256`, `Streebog-512`
- `FNV-1-32`, `FNV-1-64`
- `FNV-1a-32`, `FNV-1a-52`, `FNV-1a-64`, `FNV-1a-1024`, `FNV-1a-128`, `FNV-1a-512`
- `HAS-160`
- `GOST`
- `MDC-2`
- `BLAKE-512`
- `Whirpool`
- `Spectral Hash`## Related
- [hash-detector](https://github.com/k4m4/hash-detector) - API for this module
## License
MIT © [Nikolaos Kamarinakis](https://nikolaskama.me)