Ghost689 2022-10-18 18:02 采纳率: 92.6%
浏览 141
已结题

信息安全,密码学,rail fence cipher加密明文,秘钥长度4,顺序为4213

信息安全,密码学Cryptography,rail fence cipher加密明文”welcome to computer science,秘钥长度4顺序4213

img

  • 写回答

4条回答 默认 最新

  • 码诅 2022-10-18 20:45
    关注
    
    import re
    
    
    def Encipher(plaintext, keyLength, order):
        result_str = ''
        plaintext = plaintext.replace(" ", "")
        text_list = re.findall(r'.{%s}' % keyLength, plaintext)
        index = [i for i in range(keyLength)]
        index = sorted(index, key=lambda item: order[item])
        for i in range(keyLength):
            for text in text_list:
                result_str += text[index[i]]
        return result_str
    
    
    if __name__ == '__main__':
        plaintext = input('plase input plaintext: ')
        keyLength = int(input('plase input keyLength: '))
        order = input('plase input order: ')
        ciphertext = Encipher(plaintext, keyLength, order)
        print('ciphertext =', ciphertext)
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 系统已结题 10月26日
  • 已采纳回答 10月18日
  • 赞助了问题酬金50元 10月18日
  • 修改了问题 10月18日
  • 展开全部

悬赏问题

  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题