SOLVE USING OCTAVE ONLY!!!!! (image of both code and output is IMPORTANT) Question: Design a Knapsack public key cryptosystem, using this system, encrypt the plaintext “BHP”. Show the details of the design process (give the selected values with explanation why selected them) and encryption process. Include in your answer Octave codes used. Use the ASCII code to convert the plaintext characters to numbers. Finally, show how to decrypt the obtained cipher values to get the plaintext character back.    The code I wrote but does not work: plaintext = [66 72 80]; % plaintext numbers  sequence = [1 2 4 8 16 40]; % superincreasing sequence knapsack_size = 60; % knapsack size   m=110 n=31   for i = 1:length(plaintext)     x = plaintext(i);     for j = 1:length(sequence)         if x >= sequence(j)             x = x - sequence(j);             knapsack(j) = 1;         else             knapsack(j) = 0;         end     end     cipher(i,:) = knapsack; end   cipher   cipher = [1 1 1 1 1; 1 1 1 1 1; 1 1 1 1 1]; % cipher values sequence = [2 4 8 16 32]; % superincreasing sequence   for i = 1:length(cipher)     knapsack = cipher(i);     plaintext(i) = sum(knapsack.*sequence); end   plaintext   plaintext = 66,72,80.   for i=1:m if mod(i.*n,m) inverseofn=i break; #inverse found endif   endfor   if inverseofn!=0   printf("Inverse is: %n\n",inverseofn)   else   printf("Inverse does not exist")   endif

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

SOLVE USING OCTAVE ONLY!!!!! (image of both code and output is IMPORTANT)

Question: Design a Knapsack public key cryptosystem, using this system, encrypt the plaintext “BHP”. Show the details of the design process (give the selected values with explanation why selected them) and encryption process. Include in your answer Octave codes used. Use the ASCII code to convert the plaintext characters to numbers. Finally, show how to decrypt the obtained cipher values to get the plaintext character back.   

The code I wrote but does not work:

plaintext = [66 72 80]; % plaintext numbers 

sequence = [1 2 4 8 16 40]; % superincreasing sequence

knapsack_size = 60; % knapsack size

 

m=110

n=31

 

for i = 1:length(plaintext)

    x = plaintext(i);

    for j = 1:length(sequence)

        if x >= sequence(j)

            x = x - sequence(j);

            knapsack(j) = 1;

        else

            knapsack(j) = 0;

        end

    end

    cipher(i,:) = knapsack;

end

 

cipher

 

cipher = [1 1 1 1 1; 1 1 1 1 1; 1 1 1 1 1]; % cipher values

sequence = [2 4 8 16 32]; % superincreasing sequence

 

for i = 1:length(cipher)

    knapsack = cipher(i);

    plaintext(i) = sum(knapsack.*sequence);

end

 

plaintext

 

plaintext = 66,72,80.

 

for i=1:m

if mod(i.*n,m)

inverseofn=i

break;

#inverse found

endif

 

endfor

 

if inverseofn!=0

 

printf("Inverse is: %n\n",inverseofn)

 

else

 

printf("Inverse does not exist")

 

endif

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Public key encryption
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY