Multi-algorithm hash generator (MD5/SHA-1/SHA-256/SHA-512/BLAKE2b) — deterministic, byte-to-byte, zero dependencies. Use when you need to hash a file or stri...
编程
text-hasher
试用Compute SHA-256 or MD5 hashes of text strings. Useful for quick integrity checks, deduplication, and content fingerprinting without leaving the terminal.
它能做什么
Compute SHA-256 or MD5 hashes of text strings. Useful for quick integrity checks, deduplication, and content fingerprinting without leaving the terminal.
技能文档
Text Hasher Skill
Quickly hash a text string with SHA-256 or MD5.
When to Use
- Verify content integrity after a copy/paste or download
- Generate a fingerprint for deduplication
- Confirm two pieces of text are identical
Prerequisites
sha256sumormd5sum(usually preinstalled on Linux/macOS)
Steps
- Hash text inline:
echo -n "your text here" | sha256sum | awk '{print $1}' - Or MD5:
echo -n "your text here" | md5sum | awk '{print $1}' - Compare two hashes with diff:
diff <(echo -n "text A" | sha256sum) <(echo -n "text B" | sha256sum) - Hash from stdin (pipe-friendly):
cat data.txt | sha256sum | awk '{print $1}'
Notes
-nonechoprevents a trailing newline from changing the hash.- For large files use
sha256sum filenamedirectly.
相关技能
Lightweight text transformation utilities. Uppercase, lowercase, reverse, and count characters/words/lines in any text input. Use when a prompt asks to convert case, reverse a string, or quickly count elements without writing a script.
Compress and decompress text files using smart abbreviation and whitespace normalization. Use when user asks to compress, shrink, reduce, or optimize text fi...
文件处理工具,提供文本哈希计算、Base64编解码、URL编解码功能。当用户提到计算MD5、SHA1、SHA256哈希、Base64编码解码、URL编码解码、文件哈希校验、文本加密哈希、URL编码转换等需求时使用此技能。
Render text into an image and return a temporary local image file path, with optional data URI. Use when Clawhub or Codex needs to convert plain text, styled...
Text processing toolkit - format, clean, convert, analyze text. Includes markdown formatting, text cleaning, word count, case conversion, find/replace, text...