Temos um aplicativo legado e precisa do Python versão 3.2 para funcionar . Por esse motivo, compilamos e instalamos o Python versão 3.2.
Conseguimos compilar e instalar com sucesso a versão 3.2 Python no Ubuntu 20.04.1 LTS , mas começamos a ter problemas ao usar a biblioteca Python "hashlib" como pode ser visto no trecho abaixo...
root@sinj:/usr/local/src/lbginst# /usr/local/lb/py32/bin/python3.2 -c "import hashlib;m=hashlib.md5();print(m.hexdigest())"
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type md5
ERROR:root:code for hash sha1 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type sha1
ERROR:root:code for hash sha224 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type sha224
ERROR:root:code for hash sha256 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type sha256
ERROR:root:code for hash sha384 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type sha384
ERROR:root:code for hash sha512 was not found.
Traceback (most recent call last):
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 141, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/usr/local/lb/py32/lib/python3.2/hashlib.py", line 91, in __get_builtin_constructor
raise ValueError('unsupported hash type %s' % name)
ValueError: unsupported hash type sha512
Traceback (most recent call last):
File "<string>", line 1, in <module>
AttributeError: 'module' object has no attribute 'md5'
PERGUNTA: Como podemos resolver o problema apresentado?
NOTA I: Após consultar dezenas de fontes na internet, começamos a suspeitar de algo relacionado aos binários libssl.so libcrypto.so .
NOTA II: Informações sobre como podemos diagnosticar o que está acontecendo também são muito bem-vindas!
Obrigado! =D
ATUALIZAÇÃO: Outro sintoma é a ocorrência desta mensagem durante o processo de construção ( make
, make install
)...
Failed to build these modules:
_hashlib _ssl
Seu problema é que você está usando o OpenSSL 1.1 e uma versão antiga do Python que não suporta essa versão do OpenSSL. O Python 3.2 foi lançado em 2011 e o OpenSSL 1.1.0 foi lançado em 2016.
Como o OpenSSL 1.0 não é mais compatível com segurança, você precisará atualizar a versão do Python que está usando para uma versão adequada. Se você não pode esperar e planeja atualizar nos próximos três meses, também pode usar um contêiner do Ubuntu 16.04, que contém o OpenSSL 1.0, que é suportado pelo Ubuntu até abril. No entanto, o Python 3.2 provavelmente também possui vulnerabilidades não corrigidas.
Os problemas apontados ocorrem porque o python versão 3.2 não é compatível com o openssl versão 1.1 que é a versão padrão (
apt-get
) utilizada pelo Ubuntu 20.04.1 LTS.A solução é compilar e instalar (
make
,make install
) versão 1.0 do openssl e configurar o processo de compilação utilizando as variáveis "CFLAGS" e "LDFLAGS" para que utilize o openssl versão 1.0.Feito! Obrigado! =D
[ Ref.:https://chowyi.com/%E6%BA%90%E7%A0%81%E7%BC%96%E8%AF%91%E5%AE%89%E8%A3%85Python3%E5%8F%8A %E9%97%AE%E9%A2%98%E8%A7%A3%E5%86%B3/, https://raspberrypi.stackexchange.com/questions/66782/how-to-install-openssl-1- 0-2-on-raspberry-pi3/66788?newreg=89c76bb5b1f542f88a63268243455e75 , https://stackoverflow.com/questions/1904990/what-is-the-difference-between-ld-library-path-and-l-at- link-time/1905144#1905144 , https://stackoverflow.com/questions/22409092/coredump-when-compiling-python-with-a-custom-openssl-version/22409394#22409394 , https://stackoverflow.com/ question/5937337/building-python-with-ssl-support-in-non-standard-location/5939170#5939170 , https://stackoverflow.com/questions/2537271/compile-openssl-with-the-shared-option/ 23513969#23513969 , https://www.hpc.dtu.dk/?page_id=1180 , https://stackoverflow.com/a/24026737/3223785 , https://www.a2hosting.com/kb/security/ssl/determining-the-openssl-version , https://superuser.com/a/1618761/195840 , https://stackoverflow.com/a/46476640/3223785 ]