题目
You are working for a spy agency. Your got a USB thumb drive with a written label:
10107E0AE50ECB0000010107E0C0FFEE
There is only one file cipher.enc inside the USB.
一、分析
首先查看文件内容,cat cipher.enc

发现乱码不能正常显示,尝试使用二进制
with open('cipher.enc','rb') as file:
text = file.read()
print