decrypt Algorithm
The encryption step performed by a Caesar cipher is often integrated as part of more complex schemes, such as the Vigenère cipher, and still has modern application in the ROT13 system. In cryptanalysis, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, is one of the simplest and most widely known encryption techniques.
clc;
clear variables;
len=str2double(input('Enter the length (character count) of the message you are looking for: ','s'));
len = len*8;
image_hide = imread('output.png');
[rows,columns,channels] = size(image_hide);
if channels > 1
image_hide = rgb2gray(image_hide);
end
count=1;
bitseq='';
for i=1:rows
for j=1:columns
%For all the characters in the message
if count<=len
%Retrieve the LSB of the intensity level of the pixel
LSB=mod(image_hide(i,j),2);
bitseq(count,1) = LSB;
count=count+1;
end
end
end
%Converting the bit sequence into the original message
weights = [ 128 64 32 16 8 4 2 1 ];
% elements are taken column wise from bitseq, each char has 8 bits so 8
% rows
message_matrix = reshape(bitseq,8,len/8);
original_message = char(weights*message_matrix);
disp(['The original message is: ',original_message]);