Hashing-Api
Hash Text/File/Bytes Using one of the following Algorithms: - MD5 : Message-Digest Algorithm (16-byte) - SHA (1/256/384/512) : Secure Hash Algorithm (1: 20-byte, 256: 32-byte, 384: 48-byte, 512: 64-byte) - Blake2B : It's a cryptographic hash function based on Dan Bernstein's ChaCha stream cipher (64-byte). Blake2B hashing has optional key paramter to make your private hashing. If hashing process…
Hashing-Api endpoints
| Method | Endpoint | Description |
|---|---|---|
| Blake2B | ||
| GET |
Blake2B Text Hash /api/blake2b/hashtext |
Hash text (as query-string-parameter) using blake2b algorithm. |
| POST |
Blake2B Text Hash 2 /api/blake2b/hashtext |
Hash posted text using blake2b algorithm. |
| GET |
Blake2B Text Hash with Key /api/blake2b/hashtextusingkey |
Hash text (as query-string-parameter) with private-key (as query-string-parameter) using blake2b algorithm. |
| POST |
Blake2B Text Hash with Key 2 /api/blake2b/hashtextusingkey |
Hash posted text with private-key (as query-string-parameter) using blake2b algorithm. |
| POST |
Blake2B Text Hash with Key 3 /api/blake2b/hashtextusingkey2 |
Hash posted text with private-key using blake2b algorithm. |
| POST |
Blake2B File Hash /api/blake2b/hashfile |
Hash uploaded file using blake2b algorithm. |
| POST |
Blake2B File Hash with Key /api/blake2b/hashfilewithkey |
Hash uploaded file with private-key (as query-string-parameter) using blake2b algorithm. |
| POST |
Blake2B Bytes Hash /api/blake2b/hashbytes |
Hash posted array of bytes using blake2b algorithm. |
| POST |
Blake2B Bytes Hash with Key /api/blake2b/hashbyteswithkey |
Hash posted array of bytes with private-key (posted) using blake2b algorithm. |
| POST |
Blake2B Buffer Hash /api/blake2b/hashbuffer |
Hash specified bytes from posted array of bytes using blake2b algorithm. |
| POST |
Blake2B Buffer Hash with Key /api/blake2b/hashbufferwithkey |
Hash specified bytes from posted array of bytes with private-key (as query-string-parameter) using blake2b algorithm. |
| POST |
Blake2B Buffer Hash with Key 2 /api/blake2b/hashbufferwithkey2 |
Hash specified bytes from posted array of bytes with posted private-key using blake2b algorithm. |
| MD5 | ||
| GET |
MD5 Text Hash /api/md5/hashtext |
Hash text (as query-string-parameter) using MD5 algorithm. |
| POST |
MD5 Text Hash 2 /api/md5/hashtext |
Hash posted text using MD5 algorithm. |
| POST |
MD5 File Hash /api/md5/hashfile |
Hash uploaded file using MD5 algorithm. |
| POST |
MD5 Bytes Hash /api/md5/hashbytes |
Hash posted array of bytes using MD5 algorithm. |
| POST |
MD5 Buffer Hash /api/md5/hashbuffer |
Hash specified bytes from posted array of bytes using MD5 algorithm. |
| SHA | ||
| GET |
SHA Text Hash /api/sha/{mode}/hashtext |
Hash text (as query-string-parameter) using SHA1, SHA256, SHA384 or SHA512 algorithm according to selected mode path-parameter [1, 256, 384, 512]. |
| POST |
SHA Text Hash 2 /api/sha/{mode}/hashtext |
Hash posted text using SHA1, SHA256, SHA384 or SHA512 algorithm according to selected mode path-parameter [1, 256, 384, 512]. |
| POST |
SHA File Hash /api/sha/{mode}/hashfile |
Hash uploaded file using SHA1, SHA256, SHA384 or SHA512 algorithm according to selected mode path-parameter [1, 256, 384, 512]. |
| POST |
SHA Bytes Hash /api/sha/{mode}/hashbytes |
Hash posted array of bytes using SHA1, SHA256, SHA384 or SHA512 algorithm according to selected mode path-parameter [1, 256, 384, 512]. |
| POST |
SHA Buffer Hash /api/sha/{mode}/hashbuffer |
Hash specified bytes from posted array of bytes using SHA1, SHA256, SHA384 or SHA512 algorithm according to selected mode path-parameter [1, 256, 384, 512]. |
Hashing-Api pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $2 / month | — |
|
| ULTRA | $5 / month | — |
|
| MEGA | $9 / month | — |
|