Monu Tools

해시 생성기 (SHA)

브라우저에서 바로 텍스트의 SHA-1, SHA-256, SHA-384, SHA-512 해시를 생성합니다.

해시 생성기 사용 방법

  1. 01

    텍스트를 입력하거나 붙여넣으세요.

  2. 02

    해시 알고리즘을 선택하세요.

  3. 03

    결과 16진수 다이제스트를 복사하세요.

What a hash is

A hash function takes any input, a word or a whole document, and produces a fixed-size string of characters called a digest. SHA-256, for example, always returns 256 bits written as 64 hexadecimal characters, whether you feed it one letter or a megabyte of text.

Two properties make hashes useful. They are deterministic, so the same input always produces the same digest, and they show the avalanche effect, so changing a single character produces a completely different result. That makes a hash a compact fingerprint of the exact content.

How this tool works

This tool computes SHA-1, SHA-256, SHA-384 and SHA-512 digests of your text locally using the browser's Web Crypto API, then shows the hex result ready to copy. SHA-256 is the sensible default for most purposes.

What hashing is for

Hashing is one-way: you cannot reverse a digest back into the original input. That is the point. It is used to verify integrity (has this file or message changed?), to build checksums, to deduplicate content, and as a building block inside signatures and version-control systems like Git.

Choosing an algorithm

SHA-1 is broken for security-critical uses because collisions can be engineered, though it is still fine as a non-security checksum. Prefer SHA-256 or stronger when security matters. MD5 is intentionally not offered because it is considered insecure.

Not for passwords

Hashing is not encryption and is not, by itself, the right way to store passwords. Raw SHA functions are deliberately fast, which helps attackers guess passwords quickly. For passwords use a slow, salted scheme such as bcrypt, scrypt or Argon2; the bcrypt generator here is built for that.

자주 묻는 질문

어떤 알고리즘이 지원되나요?

브라우저의 Web Crypto API를 통해 SHA-1, SHA-256, SHA-384, SHA-512를 지원합니다. SHA-256이 좋은 기본값입니다.

MD5를 사용할 수 있나요?

아니오. MD5는 안전하지 않은 것으로 간주되며 Web Crypto API에서 제공하지 않습니다. SHA-256 이상을 사용하는 것이 좋습니다.

출처

이 도구 임베드하기

이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.

<iframe src="https://monu.tools/embed/ko/hash-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

관련 도구