• 大小: 3KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: Matlab
  • 标签: matlab  md5  

资源简介

链接: https://pan.baidu.com/s/1YDd-uSEUDqK-x2lIUjBieA 提取码: ak53 复制这段内容后打开百度网盘手机App,操作更方便哦 按照md5加密算法流程,使用matlab的m语言编写的md5加密算法。

资源截图

代码片段和文件信息

function digest = MD5(text)
%%输入输出
%text:输入任意长度得ascii明文,ascii输入
%digest:运行md5算法得到得摘要16进制输出
%运算以小端模式进行
%%相关数据表格
X=[0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15;%512位分组中x[k]使用顺序表
    1 6 11 0 5 10 15 4 9 14 3 8 13 2 7 12;
    5 8 11 14 1 4 7 10 13 0 3 6 9 12 15 2;
    0 7 14 5 12 3 10 1 8 15 6 13 4 11 2 9];

%定义每步迭代中使用的函数
F=inline(‘(b&c)|((~b)&d)‘‘b‘‘c‘‘d‘);
G=inline(‘(b&d)|(c&(~d))‘‘b‘‘c‘‘d‘);
H=inline(‘bitxor(bitxor(bc)d)‘‘b‘‘c‘‘d‘);
I=inline(‘bitxor(cb|(~d))‘‘b‘‘c‘‘d‘);

%循环移位表
Cyclic=[7 12 17 22;5 9 14 20;4 11 16 23;6 10 15 21];

%缓冲区初始化
%A=0x67452301B=0xefcdab89C=0x98badcfeD=0x10325476小端模式数据
A=1732584193;B=4023233417;C=2562383102;D=271733878;%对应10进制数据
%% 数据填充
L_ascii = length(text);%获取明文长度
L_fill = (448-mod(L_ascii*8512))/8;%待填充字节数
L_total = L_ascii+L_fill+8;
if L_fill<0%再扩充一段
    L_total = L_total+64;
    L_fill = L_fill+64;
end
L_text = L_ascii*8;%数据bit数长度,假设数据长度暂不会超过2^64位
text_buf = zeros(1L_total);%数据以字节存储
for i=1:L_ascii%文字读入
    text_buf(i) = char(text(i));
end
text_buf(L_ascii+1) = 128;%填充0x80
for i=2+L_ascii:L_ascii+L_fill%填0
    text_buf(i) = 0;
end
for i=1:8%填充长度
    bits = bitget(L_texti*8:-1:i*8-7);bits_str = num2str(bits);pos = bits_str~=‘ ‘;
    text_buf(L_total-8+i)=bin2dec(bits_str(pos));
end
%% 摘要运算
L_cycle = L_total/64;%总共需要的运算轮数
for i=1:L_cycle
    A0_tmp=A;B0_tmp=B;C0_tmp=C;D0_tmp=D;%数据暂存
    XK=reshape(text_buf((i-1)*64+1:i*64)416);
    for j=1:4%四轮运算
       switch j%选择处理用的逻辑函数
            case 1 
                f=F;
            case 2 
        

评论

共有 条评论