All questions
Q & A Getting Started · August 27, 2026

What are the recommended parameters for Argon2id password hashing?

OWASP 2023 defaults: iterations (t) 3, memoryKb (m) 65536 (64 MiB), parallelism (p) 4, hashLength 32. These give ~50 ms per hash on modern hardware — slow enough to make brute-force expensive, fast enough not to impact real users. The API enforces bounds (t 1–6, m 8 KiB–256 MiB, p 1–8, hashLength 16–64) so requests outside range are rejected before compute. Never reuse salts — the tool generates a random 16-byte salt per request.

Read the full guide
DomainScan API Quickstart
DomainScan's API gives programmatic access to all 50+ tools including cryptographic hashing (MD5, SHA family, BLAKE2, RIPEMD-160) and password hashing (bcrypt, Argon2). This quickstart covers authentication, making your first call, the full endpoint reference, and code examples in JavaScript, Python, and curl.