Identify the password-hash format encoded in a stored string.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The encoded string is matched against known prefixes, separators, cost fields, salt sections, and digest lengths for formats such as Argon2, bcrypt, scrypt, and PBKDF2. Recognition identifies a format family; it does not recover the password or verify a hash against one.
$2b$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy
=== Password Hash Format Check === Input: $2b$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy Length: 60 characters Result: VALID FORMAT (1 match) Format: bcrypt Description: Bcrypt password hash (Blowfish-based) Example: $2b$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy
Hash migrations, authentication services, and storage audits identify password encodings.