hslogic算法仿真-基于chao混沌的图像加解密

上传者: ccsss22 | 上传时间: 2021-04-06 09:44:12 | 文件大小: 520KB | 文件类型: ZIP
clear;close; disp('请输入密钥:'); x(1)=input('请输入第一个密钥: '); y(1)=input('请输入第二个密钥: '); z(1)=input('请输入第三个密钥: '); disp('加密中...'); f=imread('test2.bmp'); %读取图像 [M,N]=size(f); N=N/3; sigma=10;r=28;b=8/3; %三维的lorenz混沌映射生成混沌序列 [x,y,z]=lorentz(M*N,0,sigma,r,b,x(1),y(1),z(1),0.01); [m1,num1]=sort(x); %混沌序列升序排列以及生成位置矩阵 [m2,num2]=sort(y); [m3,num3]=sort(z); fr=f(:,:,1); %图像的R分量矩阵 fg=f(:,:,2); %图像的G分量矩阵 fb=f(:,:,3); %图像的B分量矩阵 ff1r=uint8(zeros(M,N)); ff1g=uint8(zeros(M,N)); ff1b=uint8(zeros(M,N)); ff2r=uint8(zeros(M,N)); ff2g=uint8(zeros(M,N)); ff2b=uint8(zeros(M,N)); ffr=uint8(zeros(M,N)); ffg=uint8(zeros(M,N)); ffb=uint8(zeros(M,N)); m1=mod(1000*m1,256); %混沌序列转为二进制 m1=uint8(m1); m2=mod(1000*m2,256); m2=uint8(m2); m3=mod(1000*m3,256); m3=uint8(m3); for i=1:M*N %加密 ff1r(i)=fr(num1(i)); %位置置乱 ff1g(i)=fg(num2(i)); ff1b(i)=fb(num3(i)); ffr(i)=bitxor(ff1r(i),m1(i)); %改变像素值 ffg(i)=bitxor(ff1g(i),m2(i)); ffb(i)=bitxor(ff1b(i),m3(i)); end ff(:,:,1)=ffr;ff(:,:,2)=ffg;ff(:,:,3)=ffb; %生成加密图像 imshow(ff);title('加密图像'); fffr=uint8(zeros(M,N)); fffg=uint8(zeros(M,N)); fffb=uint8(zeros(M,N)); for i=1:M*N %解密 ff2r(i)=bitxor(ffr(i),m1(i)); %生成原图像像素值 ff2g(i)=bitxor(ffg(i),m2(i)); ff2b(i)=bitxor(ffb(i),m3(i)); fffr(num1(i))=ff2r(i); %改变位置到原来的位置 fffg(num2(i))=ff2g(i); fffb(num3(i))=ff2b(i); end fff(:,:,1)=fffr;fff(:,:,2)=fffg;fff(:,:,3)=fffb; %生成解密图像 figure imshow(fff);title('解密图像'); %生成分析图 figure;subplot(2,1,1);imhist(fr);title('加密前R分量直方图');subplot(2,1,2);imhist(ffr);title('加密后R分量直方图'); figure;subplot(2,1,1);imhist(fg);title('加密前G分量直方图');subplot(2,1,2);imhist(ffg);title('加密后G分量直方图'); figure;subplot(2,1,1);imhist(fb);title('加密前B分量直方图');subplot(2,1,2);imhist(ffb);title('加密后B分量直方图');

文件下载

资源详情

[{"title":"( 7 个子文件 520KB ) hslogic算法仿真-基于chao混沌的图像加解密","children":[{"title":"04206148chaopicture","children":[{"title":"图像加密程序_边","children":[{"title":"test2.bmp <span style='color:#111;'> 225.05KB </span>","children":null,"spread":false},{"title":"lorentz.m <span style='color:#111;'> 2.62KB </span>","children":null,"spread":false},{"title":"lorenzpicture.m <span style='color:#111;'> 2.00KB </span>","children":null,"spread":false},{"title":"logisticpicture.m <span style='color:#111;'> 2.08KB </span>","children":null,"spread":false},{"title":"功能.txt <span style='color:#111;'> 203B </span>","children":null,"spread":false},{"title":"test1.bmp <span style='color:#111;'> 364.55KB </span>","children":null,"spread":false}],"spread":true},{"title":"hslogic.txt <span style='color:#111;'> 215B </span>","children":null,"spread":false}],"spread":true}],"spread":true}]

评论信息

免责申明

【只为小站】的资源来自网友分享,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,【只为小站】 无法对用户传输的作品、信息、内容的权属或合法性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论 【只为小站】 经营者是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。
本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二条之规定,若资源存在侵权或相关问题请联系本站客服人员,zhiweidada#qq.com,请把#换成@,本站将给予最大的支持与配合,做到及时反馈和处理。关于更多版权及免责申明参见 版权及免责申明