Hash Generator — MD5, SHA & bcrypt avatar

Hash Generator — MD5, SHA & bcrypt

Pricing

from $0.00025 / hash generated

Go to Apify Store
Hash Generator — MD5, SHA & bcrypt

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

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

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.

Hash Generator input — configure the options in the Apify Console

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" }
FieldTypeDescription
inputsarrayStrings to hash.
algorithmsarrayAny of md5, sha1, sha224, sha256, sha384, sha512, sha3-256, sha3-512, ripemd160.
encodingstringhex or base64.

Output

Hash Generator output — the results as a clean dataset

{ "input": "hello world", "algorithm": "sha256", "hash": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9" }

Output schema

FieldTypeDescription
inputstringThe input string.
algorithmstringThe hash algorithm.
hashstringThe 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.