RosettaCodeData/Task/RIPEMD-160/00DESCRIPTION

14 lines
639 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
{{omit from|Brlcad}}
{{omit from|GUISS}}
{{omit from|Lilypond}}
{{omit from|Openscad}}
2013-04-10 23:57:08 -07:00
'''RIPEMD-160''' is another hash function; it computes a 160-bit message digest.
2015-02-20 00:35:01 -05:00
There is a [http://homes.esat.kuleuven.be/~bosselae/ripemd160.html RIPEMD-160 home page], with test vectors and [http://www.esat.kuleuven.be/~bosselae/ripemd/rmd160.txt pseudocode for RIPEMD-160].
For padding the message, RIPEMD-160 acts like [[MD4]] (RFC 1320).
2013-04-10 23:57:08 -07:00
2015-02-20 00:35:01 -05:00
Find the RIPEMD-160 message digest of a string of [[octet]]s.
Use the ASCII encoded string “<tt>Rosetta Code</tt>”.
You may either call an RIPEMD-160 library, or implement RIPEMD-160 in your language.