信息安全,密码学Cryptography,rail fence cipher加密明文”welcome to computer science,秘钥长度4顺序4213
信息安全,密码学,rail fence cipher加密明文,秘钥长度4,顺序为4213
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
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)
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥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问题