Argon2 Hash
Produces an Argon2id hash. Argon2 is memory-hard as well as slow, which is what makes it resistant to GPU and ASIC cracking in a way BCrypt is not. Prefer this over BCrypt for new systems.
Argon2id is memory-hard: each call allocates and works over a sizeable block of RAM, so it consumes both CPU and memory that cannot be shared with other requests. It is the most expensive pure-CPU tool here.
Any HTTP client works. Replace the key with one from your dashboard.
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/argon2-hash \
-H "Authorization: Bearer tb_live_<your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"password": "correct horse battery staple"
}'Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
password | string | required | - | Plaintext password to hash. Sent over TLS and never stored. |
Output
| Field | Type | Description |
|---|---|---|
hash | string | Encoded Argon2id hash including its parameters and salt. |
Try it
Sends a real POST /api/v1/tools/argon2-hash from your browser and charges 3 credits to your account.
Sign in to run this endpoint. New accounts start with free credits.