"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)
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?
https://github.com/demining/CryptoDeepTools/issues/19#issuecomment-1858305416
"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