✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
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))