Algorithm reference
RIPEMD-160 hash calculator
RIPEMD-160 remains useful for interoperability, but mainstream modern protocols generally prefer SHA-256, SHA-3, BLAKE2, or BLAKE3.
Legacy / specialized
160-bit output
40 hex characters
Digest calculator
Text to hash
Never enter a real account password or any other secret. Submitted text is processed by the server, but never placed in the URL, logs, analytics, or ads.
Practical guidance
About RIPEMD-160
Compatibility with existing formats and specialist systems.
Collision resistance
No practical full collision is assumed here, but ecosystem support and modern analysis are more limited than for current mainstream choices.
Examples
Use RIPEMD-160
Command line
printf %s "hello" | openssl dgst -ripemd160Python
hashlib.new("ripemd160", b"hello").hexdigest()JavaScript / browser
RIPEMD is not provided by WebCrypto.