3
AttributeError: o módulo 'time' não tem nenhum atributo 'clock' no Python 3.8
Eu escrevi código para gerar chaves públicas e privadas. Funciona muito bem no Python 3.7, mas falha no Python 3.8. Não sei como falha na versão mais recente. Me ajude com algumas soluções. Aqui está o código: from Crypto.PublicKey import RSA def generate_keys(): modulus_length = 1024 key = RSA.generate(modulus_length) pub_key …