✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
O seguinte trecho de código em Python, representa a utilização da biblioteca "cryptography" para cifrar uma mensagem. Qual o tamanho de chave que está a ser usado?
from cryptography.fernet import Fernetkey = Fernet.generate_key()f = Fernet(key)encrypted = f.encrypt(b'This is my super secret message!!!')print("Encrypted: " + str(encrypted))