2.1.2 • Published 5 years ago

test-hash v2.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

TEST-HASH

NodeJS module to test if a hash results in a given string without knowing the hashing algorithm.

Build Status

Supported hashes

All hashes from the NodeJS library crypto are supported.

Usage

Install the package with npm i test-hash

Import the module like this:

const testHash = require('test-hash')  

Use the module like this:

//Unknown hash format
testHash('b10a8db164e0754105b7a99be72e3fe5', 'Hello World') // (md5) => true 
testHash('0a4d55a8d778e5022fab701977c5d840bbc486d0', 'Hello World') // (sha1) => true 
testHash('a830d7beb04eb7549ce990fb7dc962e499a27230', 'Hello World') // (RIPEMD-160) => true 
//etc...

//Known hash format (doesn´t lookup every hash => faster)
testHash('b10a8db164e0754105b7a99be72e3fe5', 'Hello World', 'md5') // => true
testHash('b10a8db164e0754105b7a99be72e3fe5', 'Hello World', 'sha1') // => false (hash is not sha1)
2.1.2

5 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.2.1

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago