Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated version of Google Colab is missing cryptographic algorithm: RIPEMD160 #4241

Open
demining opened this issue Dec 19, 2023 · 1 comment

Comments

@demining
Copy link

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:

import hashlib

for name in hashlib.algorithms_available:
    try:
        hashlib.new(name)
        print('ok', name)
    except ValueError:
        print('error', name)

image

**Cryptographic algorithm: RIPEMD160 missing

@polynonce
Copy link

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 ((((

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants