Python加密解密

本文使用创作助手。

以下是一个使用Python实现的简洁的凯撒密码编密与解密的示例代码:

def caesar_cipher(text, shift):
    encrypted_text = ""
    for char in text:
        if char.isalpha():
            if char.isupper():
                encrypted_text += chr((ord(char) - ord('A') + shift) % 26 + ord('A'))
            else:
                encrypted_text += chr((ord(char) - ord('a') + shift) % 26 + ord('a'))
        else:
            encrypted_text += char
    return encrypted_text

def caesar_decipher(text, shift):
    decrypted_text = ""
    for char in text:
        if char.isalpha():
            if char.isupper():
                decrypted_text += chr((ord(char) - ord('A') - shift) % 26 + ord('A'))
            else:
                decrypted_text += chr((ord(char) - ord('a') - shift) % 26 + ord('a'))
        else:
            decrypted_text += char
    return decrypted_text

# 测试
plaintext = "Hello, world!"
shift = 3

encrypted_text = caesar_cipher(plaintext, shift)
decrypted_text = caesar_decipher(encrypted_text, shift)

print("Plaintext:", plaintext)
print("Encrypted text:", encrypted_text)
print("Decrypted text:", decrypted_text)

输出结果:

Plaintext: Hello, world!
Encrypted text: Khoor, zruog!
Decrypted text: Hello, world!

在上述示例代码中,caesar_cipher函数用于加密文本,caesar_decipher函数用于解密文本。它们使用了简单的位移操作来实现凯撒密码的加密与解密过程。shift参数表示位移的大小。plaintext为明文,encrypted_text为加密后的文本,decrypted_text为解密后的文本。

请注意,这只是一个简单的凯撒密码实现,安全性较低。在实际应用中,建议使用更复杂的加密算法来保护敏感信息。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值