Skip to main content
DevTools24

哈希识别器

通过分析格式和长度识别哈希算法。支持 MD5、SHA 系列、bcrypt 等。

CRC32:8 chars
MD5:32 chars
SHA-1:40 chars
SHA-256:64 chars
SHA-384:96 chars
SHA-512:128 chars

Hash Detection - 技术详情

Hash identification works by analyzing the length, character set, and prefix patterns of hash values. For example, MD5 is 32 hex chars, SHA-256 is 64 hex chars, and bcrypt starts with $2.

命令行替代方案

# Check hash length
echo -n 'hash_value' | wc -c

# Using hashid tool
pip install hashid
hashid 'your_hash_here'