分享链接

dooccn

在做CTF题目的时候,为了方便分享Python代码,发现一个可以分享代码的在线编辑器网站dooccn,包括不限于Python。

运行效果

image.png

🐍分享链接🐍

导入包

Google Colaboratory

导入代码

  1. #需要导入的包
  2. !pip install twofish
  3. from twofish import Twofish
  4. T = Twofish(b'*secret*')
  5. x = T.encrypt(b'YELLOWSUBMARINES')
  6. print(T.decrypt(x).decode())

运行效果

image.png