You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"hashlib" module, which is installed by default, does not work properly, because Some cryptographic algorithms are missing, for example there is no RIPEMD160 algorithm and therefore we cannot reproduce base58.
To check, I ran the code:
import hashlib
for name in hashlib.algorithms_available:
try:
hashlib.new(name)
print('ok', name)
except ValueError:
print('error', name)
**Cryptographic algorithm: RIPEMD160 missing
The text was updated successfully, but these errors were encountered:
Can't the developers solve this problem with the "hashlib" module? For me this is a terrible bug in Google Colab. The main thing is that it doesn’t work on both versions of Python ((((
Is it possible to solve this problem by updating it myself?
demining/CryptoDeepTools#19 (comment)
"hashlib" module, which is installed by default, does not work properly, because Some cryptographic algorithms are missing, for example there is no RIPEMD160 algorithm and therefore we cannot reproduce base58.
To check, I ran the code:
**Cryptographic algorithm: RIPEMD160 missing
The text was updated successfully, but these errors were encountered: