(New page: == How can Bob decrypt the message? == Since Alice specified that she was going to use 3-by-3 secret matrix and we have a decrypted matrix and its pre-decrypted matrix, we can solve for ...)
 
Line 1: Line 1:
 
 
== How can Bob decrypt the message?  ==
 
== How can Bob decrypt the message?  ==
 
Since Alice specified that she was going to use 3-by-3 secret matrix and we have a decrypted matrix and its pre-decrypted matrix, we can solve for secret matirx by multiplying encrypted matrix by inverse of decrypted matrix
 
Since Alice specified that she was going to use 3-by-3 secret matrix and we have a decrypted matrix and its pre-decrypted matrix, we can solve for secret matirx by multiplying encrypted matrix by inverse of decrypted matrix
Line 14: Line 13:
 
%  
 
%  
 
</pre>
 
</pre>
 +
 +
 +
== Can Eve decrypt the message without finding the inverse of the secret matrix?  ==
 +
Yes, she can set an equation that <math>decrypted*secret=encrypted</math>

Revision as of 17:06, 19 September 2008

How can Bob decrypt the message?

Since Alice specified that she was going to use 3-by-3 secret matrix and we have a decrypted matrix and its pre-decrypted matrix, we can solve for secret matirx by multiplying encrypted matrix by inverse of decrypted matrix

 format rat
A=[1 0 4;0 1 0;1 0 1];
B=[2 0 0;0 1 0;0 0 3];
secret= B*inv(A)
% secret =
% 
%       -2/3            0              8/3     
%        0              1              0       
%        1              0             -1       
% 


Can Eve decrypt the message without finding the inverse of the secret matrix?

Yes, she can set an equation that $ decrypted*secret=encrypted $

Alumni Liaison

Sees the importance of signal filtering in medical imaging

Dhruv Lamba, BSEE2010