Question: COSC 359 Binary Encryption and Decryption Data on a computer is stored in binary form, in the form of bytes (8 bits of 1's or

 COSC 359 Binary Encryption and Decryption Data on a computer is

COSC 359 Binary Encryption and Decryption Data on a computer is stored in binary form, in the form of bytes (8 bits of 1's or 0's). As an example, binary data can easily be "encrypted" with a "key" based on a little Boolean operation called an xor, or exclusive or. When we xor a single bit (a 1 or 0) with another bit: if 1 bit is true and 1 bit is false, it returns true, otherwise it returns false; so: 1xor 1 = 0 1xor 0 = 1 0xor 1 = 1 0xor 0 = 0 And now, one reason this is useful is because if we take the new bit and xor it with the same key (the second bit) the result will always be the first bit. So: 0xor 1 = 1 1xor 0 = 1 1xor 1 = 0 0xor 0 = 0 Now using the above, demonstrate encryption and decryption by writing a program in C++ or language of your choice). Use keyboard to input values for your program variables, and the monitor for outputting results

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!