HMAC-SHA-256 of a message plus a key, and a local password strength score. This is not how you should store user passwords (use Argon2/bcrypt on a server) and not a password generator.
An API wants HMAC-SHA-256(secret, body), or you want a local strength score on a string you already have. That is this page.
Hash generator is unkeyed text. Password generator mints new passwords. File SHA-256 is files.
How to use it
- Enter message and key for HMAC, or paste a password to score.
- Copy the hex. Compare encodings (hex vs base64) with the docs.
- Do not check a live production password against a random website — confirm this tab with the Network panel if you are nervous.
Honest limits
- Not bcrypt/Argon2.
- Not a breach-database lookup.
- Wrong encoding (UTF-8 vs bytes) is the usual interop fail.
This is a local crypto helper, not a vault.