https://github.com/roppa/which-hash
Find out which hashing algorithm was used to generate hex hash string from your input
https://github.com/roppa/which-hash
crypto hashing-algorithms nodejs
Last synced: about 1 month ago
JSON representation
Find out which hashing algorithm was used to generate hex hash string from your input
- Host: GitHub
- URL: https://github.com/roppa/which-hash
- Owner: roppa
- License: mit
- Created: 2018-05-11T14:13:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-11T17:20:33.000Z (about 8 years ago)
- Last Synced: 2025-02-14T18:36:27.078Z (over 1 year ago)
- Topics: crypto, hashing-algorithms, nodejs
- Language: JavaScript
- Size: 53.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://circleci.com/gh/roppa/which-hash)
# Which Hash?
So you have some input, and you have a hex hash string, but you don't know which hashing algorithm was used? Think again! Find out which it is with this handy tool!
```javascript
const which = require('which-hash');
console.log(which('', 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'));
// RSA-SHA256
```