Python实现的维尼吉亚密码算法示例
作者:chengqiuming 时间:2023-08-25 10:19:25
本文实例讲述了Python实现的维尼吉亚密码算法。分享给大家供大家参考,具体如下:
一 代码
# -*- coding:utf-8 -*-
#key='relations'
#plaintext='tomorrowiwillhaveagood'
print("脚本之家测试结果:")
key='helloworld'
plaintext=raw_input('请输入明文:')
ascii='abcdefghijklmnopqrstuvwxyz'
keylen=len(key)
ptlen=len(plaintext)
ciphertext =''
i =0
while i < ptlen:
j = i % keylen
k = ascii.index(key[j])
m = ascii.index(plaintext[i])
ciphertext += ascii[(m+k)%26]
i +=1
print(ciphertext)
#维吉尼亚加密算法 解密
key='helloworld'
ciphertext=raw_input('请输入密文:')
ascii='abcdefghijklmnopqrstuvwxyz'
keylen=len(key)
ctlen=len(ciphertext)
plaintext =''
i =0
while i < ctlen:
j = i % keylen
k = ascii.index(key[j])
m = ascii.index(ciphertext[i])
if m < k:
m +=26
plaintext += ascii[m-k]
i +=1
print(plaintext)
二 运行结果:
PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:
文字在线加密解密工具(包含AES、DES、RC4等):
http://tools.jb51.net/password/txt_encode
MD5在线加密工具:
http://tools.jb51.net/password/CreateMD5Password
在线散列/哈希算法加密工具:
http://tools.jb51.net/password/hash_encrypt
在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
http://tools.jb51.net/password/hash_md5_sha
在线sha1/sha224/sha256/sha384/sha512加密工具:
http://tools.jb51.net/password/sha_encode
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/chengqiuming/article/details/78601100
标签:Python,密码,算法
0
投稿
猜你喜欢
CentOS 7.2 Yum编译安装MySQL 5.6
2024-01-19 06:03:18
利用JavaScript实现简单的网页时钟
2024-04-23 09:29:39
python标准算法实现数组全排列的方法
2022-03-18 15:11:38
Sql Server 查询性能优化之走出索引的误区分析
2012-05-22 18:56:52
使用Vue.js和MJML创建响应式电子邮件
2023-07-02 17:08:59
PHP实现获取第一个中文首字母并进行排序的方法
2023-10-30 12:29:08
wxPython之解决闪烁的问题
2022-05-12 13:21:30
Python使用Crypto库实现加密解密的示例详解
2021-11-10 05:53:10
python中id函数运行方式
2021-12-27 14:03:50
python实现学生管理系统
2022-12-18 02:42:22
Python中格式化字符串输出的4种方式小结
2023-08-10 21:30:49
微信小程序实现2048小游戏的详细过程
2024-04-23 09:11:18
Python实现的栈、队列、文件目录遍历操作示例
2022-06-10 00:12:35
pymongo为mongodb数据库添加索引的方法
2024-01-22 17:51:51
设计师和美工
2008-10-27 13:43:00
Python List remove()实例用法详解
2022-11-24 17:40:18
python super()函数的详解
2023-08-08 10:09:42
深入理解Vue 的条件渲染和列表渲染
2024-04-09 10:46:37
一文详解CORS与预检请求
2024-06-10 16:04:19
sql server海量数据库的查询优化及分页算法方案
2010-07-02 21:17:00