PTPureToolkit
SecurityLocal-only

SHA Hash Generator

Generate SHA-256, SHA-384, and SHA-512 hashes locally in your browser with hex and Base64 output.

This tool runs locally in your browser. Your input is not uploaded.

No uploadsNo server logsNo runtime APIsBrowser-only transforms

Hash output

Run the tool to generate local output.
Options

Examples

Plain text

A short string for digest comparison.

local browser tools

Config line

A single configuration value hashed locally.

NEXT_PUBLIC_SITE_URL=https://tools.example.com

How it works

  1. Input text is converted to UTF-8 bytes.
  2. The browser Web Crypto API computes the selected SHA digest.
  3. The digest is shown in hex and Base64 encodings.

Limitations

  • This scaffold hashes text, not uploaded files.
  • SHA hashes are not password storage by themselves; use a password hashing algorithm for credentials.

FAQ

Which hash algorithms are available?

The current tool supports SHA-256, SHA-384, and SHA-512 through Web Crypto.

Is this suitable for passwords?

No. Passwords need dedicated slow password hashing such as Argon2, bcrypt, or scrypt.

Related tools