⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_rot.py

📁 minimal python variant for small footprint apps like embedded apps
💻 PY
字号:
import rotorr = rotor.newrotor("you'll never guess this")r = rotor.newrotor("you'll never guess this", 12)A = 'spam and eggs'B = 'cheese shop'a = r.encrypt(A)print `a`b = r.encryptmore(B)print `b`A1 = r.decrypt(a)print A1if A1 <> A:    print 'decrypt failed'B1 = r.decryptmore(b)print B1if B1 <> B:    print 'decryptmore failed'try:    r.setkey()except TypeError:    passr.setkey('you guessed it!')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -