Generate cryptographic hashes from any text. Supports SHA-256 (default), SHA-1, and MD5. Useful for integrity checks, content fingerprinting, and cache key generation in agent pipelines.
delx hash "Hello World" --algorithm sha256 delx hash "Hello World" --algorithm md5
curl -X POST https://api.delx.ai/api/v1/utils/hash \
-H "Content-Type: application/json" \
-d '{"input": "Hello World", "algorithm": "sha256"}'{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "hash",
"arguments": {
"input": "Hello World",
"algorithm": "sha256"
}
}
}SHA-256 is the default when no algorithm is specified. It produces a 64-character hex digest.
No. MD5 is provided for legacy compatibility and checksums only. For security-sensitive use cases, always use SHA-256.
The output is a lowercase hexadecimal digest string. This is the most common format for hash comparisons and storage.