Displaying 3 results from an estimated 3 matches for "unhexlifi".
Did you mean:
unhexlify
2016 Feb 03
2
Python hashlib and ripemd160
Hi - I think the patent monster has struck again.
rmd = hashlib.new('ripemd160',binascii.unhexlify(someString)).hexdigest()
That fails - ValueError: unsupported hash type
From some googling, it appears that the supported hash types are from
OpenSSL and that means the OpenSSL in CentOS doesn't support ripemd160.
I've worked around other stuff missing from CentOS OpenSSL by
2016 Feb 03
1
Python hashlib and ripemd160
okay it appears there are no suspect patent issues with ripemd160 so
either they just didn't include it for some other reason or the issue is
elsewhere.
On 02/03/2016 03:00 AM, Eero Volotinen wrote:
> well, how about compiling instance to another directory like
> /opt/python-alternative?
>
> usually works like ./configure --prefix=/opt/python-alternative and then
> other
2016 Feb 03
0
Python hashlib and ripemd160
well, how about compiling instance to another directory like
/opt/python-alternative?
usually works like ./configure --prefix=/opt/python-alternative and then
other normal stuff..
--
Eero
2016-02-03 12:52 GMT+02:00 Alice Wonder <alice at domblogger.net>:
> Hi - I think the patent monster has struck again.
>
> rmd =