| name | hash-generate |
| description | Generate SHA and MD5 hashes for data integrity verification. |
| metadata | {"openclaw":{"emoji":"🔐"}} |
Hash Generate
Generate cryptographic hashes for data integrity.
Generate Hashes
echo -n "data to hash" | sha256sum
echo -n "data to hash" | sha512sum
echo -n "data to hash" | md5sum
sha256sum /data/input/file.bin
Tips for AI Agents
- Use SHA-256 or SHA-512 for security-critical hashing.
- MD5 is only suitable for checksums, not security.
- Use
sha256sum -c with checksum files to verify integrity.