Caesar

右移量
Shift Result

Python代码参考

1
2
# 模块安装
pip install pycipher
1
2
3
4
from pycipher import Caesar
 
plaintext = Caesar(3).decipher(ciphertext)
ciphertext = Caesar(3).encipher(plaintext)

Python脚本下载

下载
1
2
3
4
# 测试字母表
python caesar.py letter <string>
# 测试ASCII表
python caesar.py ascii <string>