Python des

from Crypto.Cipher import DES
from Crypto import Random
iv = Random.get_random_bytes(8)
des1 = DES.new('01234567', DES.MODE_CFB, iv)
des2 = DES.new('01234567', DES.MODE_CFB, iv)
text = 'Good Morning'
cipher_text = des1.encrypt(text)
print("Encrpted message ",cipher_text) 
print("Decrypted Original Message: ",(des2.decrypt(cipher_text)))
Clever Cockroach