Calculator/Computer Calculator/ String Encryption (Hash) Calculator

What is a Hash Algorithm?

A hash algorithm is an algorithm that converts data of arbitrary length into a value of fixed length. It is mainly used for data integrity verification, password storage, etc.

Detailed explanation of supported algorithms:

MD5 (Message Digest Algorithm 5)
  • Hash Length: 128비트 (32자)
  • Feature: 빠른 처리 속도
  • Weakness: 충돌 공격에 취약하여 보안용으로 부적합
  • Usage Example: 파일 무결성 체크, non-cryptographic 용도
SHA-1 (Secure Hash Algorithm 1)
  • Hash Length: 160비트 (40자)
  • Feature: MD5보다 안전하나 여전히 취약
  • Weakness: 2017년 구글에서 충돌 공격 성공
  • Usage Example: 레거시 시스템 호환용
SHA-256
  • Hash Length: 256비트 (64자)
  • Feature: SHA-2 계열, 현재 가장 널리 사용
  • Security Level: 2030년까지 안전하다고 평가
  • Usage Example: 비트코인, SSL 인증서
SHA-512
  • Hash Length: 512비트 (128자)
  • Feature: SHA-256보다 긴 해시값
  • Security Level: 높은 보안이 필요한 경우 사용
  • Usage Example: 높은 보안 요구사항의 금융 시스템
Base64
  • Feature: 해시가 아닌 인코딩 방식
  • 가역성: 디코딩 가능
  • Usage Example: 이미지 임베딩, API 키 전송

Security Warnings

⚠️ Important Warning

  1. Sensitive Data Warning: Do not test actual passwords or personal information
  2. Hash ≠ Encryption: Hash is one-way. Decryption is not possible
  3. Salt Usage Recommended: Always use salt when storing passwords

Algorithm Selection Guide

  • File Integrity Verification: SHA-256 또는 SHA-512 추천
  • Password Hashing: PBKDF2, bcrypt, scrypt 사용 권장
  • Data Encoding: Base64 사용
  • Legacy System Compatibility: MD5 또는 SHA-1(단, 보안용 X)

Input


Character Count: 0

Encrypted Results


SHA-256

-

SHA-512

-

MD5

-

SHA-1

-

Base64

-

Compare Hash Value

Algorithm Comparison