分享链接
dooccn
在做CTF题目的时候,为了方便分享Python代码,发现一个可以分享代码的在线编辑器网站dooccn,包括不限于Python。
运行效果
🐍分享链接🐍
导入包
Google Colaboratory
导入代码
#需要导入的包
!pip install twofish
from twofish import Twofish
T = Twofish(b'*secret*')
x = T.encrypt(b'YELLOWSUBMARINES')
print(T.decrypt(x).decode())