해시 생성기 온라인 — 무료 MD5 SHA-1 SHA-256 SHA-512
임의 텍스트의 MD5, SHA-1, SHA-256, SHA-512 해시를 브라우저에서 계산. 업로드 없음, 입력이 페이지를 벗어나지 않습니다.
텍스트를 입력하거나 붙여넣으면 4가지 다이제스트가 WebCrypto API로 로컬에서 계산됩니다.
MD5
—
SHA-1
—
SHA-256
—
SHA-512
—
일반적인 사용 사례
- 1Verify a file checksum from a vendor without installing extra tools.
- 2Quickly hash a password to test it against a leaked-credential list (Have I Been Pwned, etc.).
- 3Generate the SHA-256 for a webhook payload signature comparison.
자주 묻는 질문
Why is MD5 still here if it's broken?+
MD5 is cryptographically broken for security but is still required by tons of legacy software — htpasswd, MySQL native_password, OpenStack hashes, etc. We keep it for compatibility with a clear warning to never use it for new code.
Can I hash binary files?+
This page hashes text only. For files use sha256sum (Linux/macOS) or CertUtil -hashfile (Windows). The output is byte-identical for matching input.
Does the tool send my text anywhere?+
No. All four algorithms run in your browser — SHA-1/256/512 via the WebCrypto API, MD5 via an inline RFC 1321 implementation. Nothing is uploaded.