Is there any way of use HMAC with RIPEMD-160?

Since that to create a ripemd-160 hash there is to use:
    h = hashlib.new('ripemd160')
it looks that isn't possible

For HMAC-SHA256 would be:
---------
import hashlib
import hmac

hm = hmac.new('key', msg='message', digestmod=hashlib.sha256)
---------


http://docs.python.org/library/hashlib.html
http://docs.python.org/library/hmac.html
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to