// by seankriegler.com
SHA Hash Generator
Generate SHA-1, SHA-256, and SHA-512 hashes from text
// SHA Hashing
Secure Hash Algorithm produces a fixed-size digest from any input. Uses the browser's native Web Crypto API.
// SHA-256
256-bit hash used in SSL certificates, Bitcoin, and data integrity verification. Most commonly used variant.
// Client-Side
All hashing happens in your browser using the Web Crypto API. Your data is never sent to any server.