Caesar

右移量
Shift Result

Python代码参考

# 模块安装
pip install pycipher
    
from pycipher import Caesar

plaintext = Caesar(3).decipher(ciphertext)
ciphertext = Caesar(3).encipher(plaintext)
    

Python脚本下载

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