forked from EbrahimZarei64/ImageEncryption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PermutationDNA.m
47 lines (40 loc) · 1.27 KB
/
PermutationDNA.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function PerImage = PermutationDNA(Image,KeyDecimal,KeyFeature,m,n,Type)
d1 = KeyDecimal(17);
d2 = KeyDecimal(18);
d3 = KeyDecimal(19);
d4 = KeyDecimal(20);
d5 = KeyDecimal(21);
d6 = KeyDecimal(22);
d7 = KeyDecimal(23);
d8 = KeyDecimal(24);
xx=bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(d1,d2),d3),d4),d5),d6),d7),d8),KeyFeature)/256;
u = 3.89+xx*0.01;
Len=d1+d2+d3+KeyFeature;
d1 = KeyDecimal(25);
d2 = KeyDecimal(26);
d3 = KeyDecimal(27);
d4 = KeyDecimal(28);
d5 = KeyDecimal(29);
d6 = KeyDecimal(30);
d7 = KeyDecimal(31);
d8 = KeyDecimal(32);
x=bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(bitxor(d1,d2),d3),d4),d5),d6),d7),d8),KeyFeature)/256;
for i = 1:Len
x = u * x * (1 - x);
end
Len4mn=4*n*m;
ChaoticSignal(1)=x;
for i=2:Len4mn
ChaoticSignal(i) = u * ChaoticSignal(i-1) * (1 - ChaoticSignal(i-1));
end
%% permutated process
[B,Pos]=sort(ChaoticSignal);
Pos=Pos';
PerImage=zeros(Len4mn,1,'uint8');
switch Type
case 'Encryption'
PerImage=Image(Pos);
case 'Decryption'
PerImage(Pos)=Image(:);
end
end