Hash Generator — MD5, SHA & bcrypt
Pricing
from $0.00025 / hash generated
Hash Generator — MD5, SHA & bcrypt
Generate MD5, SHA-1/256/512 and bcrypt hashes for a list of strings in bulk. For integrity checks, deduplication keys and fixtures.
Pricing
from $0.00025 / hash generated
Rating
0.0
(0)
Developer
hiper soft
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
7 days ago
Last modified
Categories
Share
Hash Generator — MD5, SHA & More (Bulk)
Compute cryptographic hashes for a list of strings in bulk — MD5, SHA-1, SHA-256/384/512, SHA-3 and RIPEMD-160 — in hex or Base64. A clean row per string per algorithm, ready for integrity checks, dedup keys and test fixtures.

What it does
- Hashes each input with one or more algorithms at once.
- Output as hex or Base64.
- One dataset row per string × algorithm for easy filtering/export.
Use cases
- Integrity & dedup — generate content hashes to detect duplicates or verify files.
- Fixtures & migrations — precompute hashes for seeding or lookups.
- Data engineering — build stable hash keys for records.
Input
{ "inputs": ["hello world", "password123"], "algorithms": ["md5", "sha256"], "encoding": "hex" }
| Field | Type | Description |
|---|---|---|
inputs | array | Strings to hash. |
algorithms | array | Any of md5, sha1, sha224, sha256, sha384, sha512, sha3-256, sha3-512, ripemd160. |
encoding | string | hex or base64. |
Output

{ "input": "hello world", "algorithm": "sha256", "hash": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9" }
Output schema
| Field | Type | Description |
|---|---|---|
input | string | The input string. |
algorithm | string | The hash algorithm. |
hash | string | The resulting digest. |
FAQ
Which algorithms are supported? MD5, SHA-1, SHA-224/256/384/512, SHA-3 (256/512) and RIPEMD-160.
Can I automate it? Yes — via integrations on the Apify platform and the Apify API.
Notes
Original clean-room implementation. For password storage, use a purpose-built password hash (e.g. bcrypt/argon2) rather than a plain digest.