凯撒密码
凯撒密码 是一种最简单且最广为人知的加密技术。它是一种替换加密的技术,明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。例如,当偏移量是3的时候,所有的字母A将被替换成D,B变成E,以此类推。这个加密方法是以罗马共和时期恺撒的名字命名的,当年恺撒曾用此方法与其将军们进行联系。
原理
💻 首先我是使用的python进行编写的,先导入python中的string库,这样我们就很方便的使用库函数 把大写字母和小写字母引入进来,然后在通过ASCILL码对里面的值进行判断和移动其中的值。
🌤️下面直接上代码!代码
import string
def kaisa(encryption, move):
lower = string.ascii_lowercase
upper = string.ascii_uppercase
before = string.ascii_letters
after = lower[move:] + lower[:move] + upper[move:] + upper[:move]
print(after)
table = ''.maketrans(before, after)
print(table)
return encryption.translate(table)
def jiemi(deciphering,move):
list = []
for i in deciphering:
ascl = ord(i) - move
list.append(chr(ascl))
print(f'解密结果:{list}')
encryption = input("输入一个字符串:")
move = int(input("输入一个位移下标:"))
kaisa1 = kaisa(encryption, move)
print(f'加密结果:{kaisa1}')
deciphering = jiemi(kaisa1,move)