DES算法
好久没写过博客啦,最近在gao搞Qt,做出漂亮的UI确实挺难的,做美工也不简单啊,好啦,言归正传,下面是实现DES的python源码,是借鉴了开源中国一个大师的源码写出来的,直接贴啦。
加密部分:
#!/usr/bin/python
#coding:utf-8 from DESstruction import *
import re __all__ = ['desencode'] class DES():
def __init__(self):
pass
#加密
def code(self, former_code, key, code_len, key_len):
output = ""
trun_len = 0 #将密文和密钥转换为二进制
code_string = self.hexTobin(former_code, code_len)
code_key = self.hexTobin(key, key_len) #如果密钥长度不是16的整数倍则以增加0的方式变为16的整数倍
if code_len % 16 != 0:
real_len = (code_len / 16) * 16 + 16
else:
real_len = code_len if key_len % 16 != 0:
key_len = (key_len / 16) * 16 + 16
key_len *= 4 #每个16进制占4位
trun_len = 4 * real_len
#对每64位进行一次加密
for i in range(0, trun_len, 64):
run_code = code_string[i : i+64]
l = i % key_len
run_key = code_key[l : l+64] #64位明文、密钥初始置换
run_code = self.code_Firstchange(run_code)
run_key = self.key_Firstchange(run_key) #16次迭代
for j in range(16): #取出明文左右32位
code_r = run_code[32 : 64]
code_l = run_code[0 : 32] #64左右交换
run_code = code_r #右边32位扩展置换
code_r = self.code_Expand(code_r) #获取本轮子密钥
key_l = run_key[0:28]
key_r = run_key[28 : 56]
key_l = key_l[d[j] : 28] + key_l[0 : d[j]]
key_r = key_r[d[j] : 28] + key_r[0 : d[j]]
run_key = key_l + key_r
key_y = self.key_Secondchange(run_key) #异或
code_r = self.code_xor(code_r,key_y) #S盒代替/选择
code_r = self.key_Sbox(code_r) #P转换
code_r = self.key_Pbox(code_r) #异或
code_r = self.code_xor(code_l, code_r)
run_code += code_r
#32互换
code_r = run_code[32 : 64]
code_l = run_code[0 : 32]
run_code = code_r + code_l #将二进制转换为16进制、逆初始置换
output += self.code_Inversepermutation(run_code)
return output #将十六进制转换为二进制字符串
def hexTobin(self, code, lens):
new_code = ''
lens = lens % 16
for key in code:
code_ord = int(key,16)
new_code += self.Tobin(code_ord, 4)
if lens != 0:
new_code += '' * (16 - lens) * 4
return new_code #二进制转换
def Tobin(self, o, lens):
new_code = ''
for i in range(lens):
new_code = str(o >> i & 1) + new_code
return new_code #密文或明文初s始置换
def code_Firstchange(self, code):
changed_code = ''
for i in range(64):
changed_code += code[ip[i] - 1]
return changed_code #密钥初始置换
def key_Firstchange (self, key):
changed_key = ''
for i in range(56):
changed_key += key[pc1[i] - 1]
return changed_key #扩展置换
def code_Expand(self, code):
new_list = ''
for i in range(48):
new_list += code[e[i] - 1]
return new_list #密钥置换选择2
def key_Secondchange(self, key):
new_list = ''
for i in range(48):
new_list += key[pc2[i] - 1]
return new_list #异或
def code_xor(self, code, key):
code_len = len(key)
new_list = ''
for i in range(code_len):
if code[i] == key[i]:
new_list += ''
else:
new_list += ''
return new_list #S盒代替选择置换
def key_Sbox(self, key):
new_list = ''
for i in range(8):
row = int(str(key[i * 6]) + str(key[i * 6 + 5]), 2)
raw = int(str(key[i * 6 + 1]) + str(key[i * 6 + 2]) + str(key[i * 6 + 3]) + str(key[i * 6 + 4]), 2)
new_list += self.Tobin(s[i][row][raw], 4) return new_list #置换P
def key_Pbox(self, code):
new_list = ''
for i in range(32):
new_list += code[p[i] - 1]
return new_list #逆初始置换
def code_Inversepermutation(self, code):
lens = len(code) / 4
new_list = ''
for i in range(lens):
list = ''
for j in range(4):
list += code[ip_1[i * 4 + j] - 1]
new_list += "%x" % int(list, 2)
return new_list def DES_encode(former_code,key):
#转换为16进制
former_code = Tohex(former_code)
key = Tohex(key) des = DES()
key_len = len(key)
code_len = len(former_code) if code_len < 1 or key_len < 1:
print 'error input'
return False key_code = des.code(former_code, key, code_len, key_len)
return key_code #将unicode字符转换为16进制
def Tohex(string):
new_string = '' for i in string:
new_string += "%02x" % ord(i) return new_string def tounicode(string):
return_string = ''
string_len = len(string)
for i in range(0, string_len, 2):
return_string += chr(int(string[i : i + 2], 16))
return return_string if __name__ == '__main__':
print DES_encode('12083612isawonder', '0f1571c947刘')
解密方法:
#!/usr/bin/python
#coding:utf-8 from DESstruction import *
import re __all__ = ['desdecode']
class DES(): def __init__(self):
pass
#解密
def decode(self, string, key, key_len, string_len):
output = ""
trun_len = 0
num = 0 #将密文转换为二进制
code_string = self.hexTobin(string, string_len)
#获取字密钥
code_key = self.getKey(key, key_len) #如果密钥长度不是16的整数倍则以增加0的方式变为16的整数倍
real_len = (key_len / 16) + 1 if key_len % 16 != 0 else key_len / 16
trun_len = string_len * 4
#对每64位进行一次加密
for i in range(0, trun_len, 64):
run_code = code_string[i : i + 64]
run_key = code_key[num % real_len] #64位明文初始置换
run_code = self.code_Firstchange(run_code) #16次迭代
for j in range(16): code_r = run_code[32 : 64]
code_l = run_code[0 : 32] #64左右交换
run_code = code_r #右边32位扩展置换
code_r = self.code_Expand(code_r) #获取本轮子密钥
key_y = run_key[15 - j] #异或
code_r = self.code_xor(code_r, key_y) #S盒代替/选择
code_r = self.code_Sbox(code_r) #P转换
code_r = self.code_Pbox(code_r) #异或
code_r = self.code_xor(code_l,code_r) run_code += code_r
num += 1 #32互换
code_r = run_code[32 : 64]
code_l = run_code[0 : 32]
run_code = code_r + code_l #将二进制转换为16进制、逆初始置换
output += self.code_Inversepermutation(run_code)
return output #将十六进制转换为二进制字符串
def hexTobin(self, code, lens):
return_code = ''
lens = lens % 16
for key in code:
code_ord = int(key,16)
return_code += self.Tobin(code_ord, 4) if lens != 0:
return_code += '' * (16 - lens) * 4
return return_code #获取子密钥
def getKey(self, key, key_len): #将密钥转换为二进制
code_key = self.hexTobin(key, key_len) a = [''] * 16
real_len = (key_len / 16) * 16 + 16 if key_len % 16 != 0 else key_len b = [''] * (real_len / 16)
for i in range(real_len / 16):
b[i] = a[ : ]
num = 0
trun_len = 4 * key_len
for i in range(0, trun_len, 64):
run_key = code_key[i : i + 64]
run_key = self.key_Firstchange(run_key)
for j in range(16):
key_l = run_key[0 : 28]
key_r = run_key[28 : 56]
key_l = key_l[d[j] : 28] + key_l[0 : d[j]]
key_r = key_r[d[j] : 28] + key_r[0 : d[j]]
run_key = key_l + key_r
key_y = self.key_Secondchange(run_key)
b[num][j] = key_y[ : ]
num += 1 return b #密文或明文初始置换
def code_Firstchange(self, code):
changed_code = ''
for i in range(64):
changed_code += code[ip[i] - 1]
return changed_code #扩展置换
def code_Expand(self, code):
return_list = ''
for i in range(48):
return_list += code[e[i] - 1]
return return_list #异或
def code_xor(self, code, key):
code_len = len(key)
return_list = ''
for i in range(code_len):
if code[i] == key[i]:
return_list += ''
else:
return_list += ''
return return_list #二进制转换
def Tobin(self, o, lens):
return_code = ''
for i in range(lens):
return_code = str(o >> i & 1) + return_code
return return_code #S盒代替选择置换
def code_Sbox(self, key):
return_list=''
for i in range(8):
row = int(str(key[i * 6]) + str(key[i * 6 + 5]), 2)
raw = int(str(key[i*6+1]) + str(key[i * 6 + 2]) + str(key[i * 6 + 3]) + str(key[i * 6 + 4]), 2)
return_list += self.Tobin(s[i][row][raw], 4)
return return_list #置换P
def code_Pbox(self, code):
return_list = ''
for i in range(32):
return_list += code[p[i] - 1]
return return_list #密钥初始置换
def key_Firstchange(self, key):
changed_key = ''
for i in range(56):
changed_key += key[pc1[i] - 1]
return changed_key #逆初始置换
def code_Inversepermutation(self, code):
return_list = ''
for i in range(16):
list = ''
for j in range(4):
list += code[ip_1[i * 4 + j] - 1]
return_list += "%x" % int(list, 2)
return return_list #密钥置换选择2
def key_Secondchange(self, key):
return_list = ''
for i in range(48):
return_list += key[pc2[i] - 1]
return return_list #入口函数
def DES_decode(from_code, key):
key = tohex(key) des = DES() key_len = len(key)
string_len = len(from_code)
if string_len % 16 != 0:
return False
if string_len < 1 or key_len < 1:
return False key_code = des.decode(from_code, key, key_len, string_len)
return tounicode(key_code) #将unicode字符转换为16进制
def tohex(string):
return_string = ''
for i in string:
return_string += "%02x" % ord(i)
return return_string def tounicode(string):
return_string = ''
string_len = len(string)
for i in range(0, string_len, 2):
return_string += chr(int(string[i : i + 2], 16))
return return_string #测试
if __name__ == '__main__':
print DES_decode('3530b23e0d9d0f5c2cb2602ac98fd26382ed6769d3dcf00a', '0f1571c947刘')
DES算法的更多相关文章
- DES算法详解
本文主要介绍了DES算法的步骤,包括IP置换.密钥置换.E扩展置换.S盒代替.P盒置换和末置换. 1.DES算法简介 DES算法为密码体制中的对称密码体制,又被称为美国数据加密标准. DES是一个分组 ...
- 基于DES算法加密的防撞库密码系统项目总结
项目内容:基于DES算法加密的防撞库密码系统 小组名:zqhzkzkj 目标:1.对用户输入的8位字符进行DES加密,要求用户输入8位密钥 2.对于不同的网站,不同的用户名生成不同的密码 小组成员:周 ...
- DES 算法的 C++ 与 JAVA 互相加解密
国内私募机构九鼎控股打造APP,来就送 20元现金领取地址:http://jdb.jiudingcapital.com/phone.html内部邀请码:C8E245J (不写邀请码,没有现金送)国内私 ...
- MFC 简单实现 DES 算法
前言 徐旭东老师说过学者就应该对知识抱有敬畏之心,所以我的博客的标题总喜欢加上"简单"二字,就是为了提醒自己,自己所学知识只是皮毛,离真理还远矣. DES 算法 DES算法是密码体 ...
- 在IOS中使用DES算法对Sqlite数据库进行内容加密存储并读取解密
在IOS中使用DES算法对Sqlite 数据库进行内容加密存储并读取解密 涉及知识点: 1.DES加密算法: 2.OC对Sqlite数据库的读写: 3.IOS APP文件存储的两种方式及读取方式. 以 ...
- Asp.Net 常用工具类之加密——对称加密DES算法(2)
又到周末,下午博客园看了两篇文章,关于老跳和老赵的程序员生涯,不禁感叹漫漫程序路,何去何从兮! 转眼毕业的第三个年头,去过苏州,跑过上海,从一开始的凌云壮志,去年背起行囊默默回到了长沙准备买房,也想有 ...
- AES算法,DES算法,RSA算法JAVA实现
1 AES算法 1.1 算法描述 1.1.1 设计思想 Rijndael密码的设计力求满足以下3条标准: ① 抵抗所有已知的攻击. ② 在多个平台上速度快,编码紧凑. ③ 设计 ...
- 安全体系(一)—— DES算法详解
本文主要介绍了DES算法的步骤,包括IP置换.密钥置换.E扩展置换.S盒代替.P盒置换和末置换. 安全体系(零)—— 加解密算法.消息摘要.消息认证技术.数字签名与公钥证书 安全体系(二)——RSA算 ...
- DES算法原理完整版
1.所需参数 key:8个字节共64位的工作密钥 data:8个字节共64位的需要被加密或被解密的数据 mode:DES工作方式,加密或者解密 2.初始置换 DES算法使用64位的密钥key将64位的 ...
- C#与Java同步加密解密DES算法
在实际项目中,往往前端和后端使用不同的语言.比如使用C#开发客户端,使用Java开发服务器端.有时出于安全性考虑需要将字符加密传输后,由服务器解密获取.本文介绍一种采用DES算法的C#与Java同步加 ...
随机推荐
- DevExpress 程序运行后 layoutView 卡片大小发生变化
设置属性前效果: 将layoutView1.CardMinSize 的属性更改为(0, 0) 后 效果:
- UIAutomator
UI Automator Viewer The uiautomatorviewer tool provides a convenient GUI to scan and analyze the UI ...
- ZOJ 3871 Convex Hull(计算几何、凸包)
题意:给n个点,|x[i]|,|y[i]| <= 1e9.求在所有情况下的子集下(子集点数>=3),凸包的面积和. 这题主要有几个方面,一个是凸包的面积,可以直接用线段的有向面积和求得,这 ...
- Ubuntu 16.04 安装ftp服务器
1.sudo apt-get update 2.sudo apt-get install vsftpd ,执行完该步骤,vsftpd服务已经安装 3.创建ftp用户 a,创建用户目录 sudo mkd ...
- linux的相关指令命令
ls:查看当前所在的目录 whoami:查看当前所在的用户名 who:(查看所有的正在使用的用户名) id:唯一的识别编号(组所在的识别编号) uname -a:显示当前操作系统的版本 cd:切换工 ...
- mysql常用函数
一.数学函数 数学函数主要用于处理数字,包括整型.浮点数等. 注:对大小写不敏感 ABS(x) 返回x的绝对值 SELECT ABS(-1) -- 返回1 CEIL(x),CEILING(x) 返回大 ...
- Photoshop 裁剪图片
如图1选择裁剪工具,然后如图2点一下clear,就可以根据鼠标裁剪任意大小的图片
- Delphi在创建和使用DLL的时候如果使用到string,请引入ShareMem单元
当使用了长字符串类型的参数.变量时,如string,要引用ShareMem. 虽然Delphi中的string功能很强大,但若是您编写的Dll文件要供其它编程语言调用时,最好使用PChar类型.如果您 ...
- C 标准库系列之locale.h
locale.h 区域设置相关,主要针对时间日期.货币格式.字符控制.数字格式等以满足某区域的设置需要. locale设置类别主要包括以下几个宏定义的类别: LC_ALL:设置所有的类别: LC_CO ...
- CSS3 波浪简单模拟--我是波浪,我有起伏,有大波与小波(坏笑中...)
我是波浪,我有起伏,我有大波与小波(坏笑中...) 最近改版网站,一般也不会去写动画,但是有些网站还是需要的,故拿出一个较简单的动画出来分享,很简单很简单. 原理简单阐述 其实很简单,使用一张美工做好 ...