Hashgen
by @bytesagain3
Hash files and strings, verify checksums, and run integrity checks fast. Use when generating SHA hashes, verifying files, or comparing digest values.
clawhub install hashgenπ About This Skill
name: HashGen description: "Hash files and strings, verify checksums, and run integrity checks fast. Use when generating SHA hashes, verifying files, or comparing digest values." version: "3.0.0" author: "BytesAgain" homepage: https://bytesagain.com source: https://github.com/bytesagain/ai-skills tags: ["hash","md5","sha256","checksum","security","verify","integrity","crypto"] categories: ["Security", "Developer Tools", "Utility"]
HashGen
Quick hash generator for strings and files. Supports MD5, SHA1, SHA256, SHA512 with auto-detection, comparison, and verification.
Commands
| Command | Description |
|---------|-------------|
| hashgen md5 | MD5 hash of text |
| hashgen sha1 | SHA1 hash of text |
| hashgen sha256 | SHA256 hash of text |
| hashgen sha512 | SHA512 hash of text |
| hashgen all | Show all hash algorithms for text |
| hashgen file | Hash a file (default: sha256) |
| hashgen compare | Compare two hashes |
| hashgen verify | Verify text matches hash (auto-detects algorithm) |
| hashgen version | Show version |
Examples
hashgen md5 "hello world" # β MD5: 5eb63bbbe01...
hashgen sha256 "my secret" # β SHA256: 40e1b17...
hashgen all "test" # β shows MD5, SHA1, SHA256, SHA512
hashgen file /etc/hostname # β SHA256 of file
hashgen file /etc/hostname md5 # β MD5 of file
hashgen compare abc123 abc123 # β β
MATCH
hashgen verify "hello" 5d41... # β auto-detects algo, verifies
Requirements
md5sum, sha1sum, sha256sum, sha512sum (standard coreutils)π‘ Examples
hashgen md5 "hello world" # β MD5: 5eb63bbbe01...
hashgen sha256 "my secret" # β SHA256: 40e1b17...
hashgen all "test" # β shows MD5, SHA1, SHA256, SHA512
hashgen file /etc/hostname # β SHA256 of file
hashgen file /etc/hostname md5 # β MD5 of file
hashgen compare abc123 abc123 # β β
MATCH
hashgen verify "hello" 5d41... # β auto-detects algo, verifies