Toolbox
Security

Password Hasher

Create SHA-256 hashes for protected posts. Processing happens locally in your browser.

SHA-256 hash

How to use

  1. Enter a password in the field above.
  2. Click Hash (or press Enter).
  3. Copy the output and use it in your SQL insert statement.
INSERT INTO protected_posts (slug, title, content, password_hash)
VALUES (
  'your-slug',
  'Your title',
  'Markdown content',
  'paste hash here'
);
Privacy note: This tool uses browser crypto.subtle.digest and does not send your password to any server.