Enforcing Privacy with Cryptography

profileGeralt207

The explosive growth of Internet communications and data storage on Internet-connected computers has greatly increased privacy concerns. The field of cryptography is concerned with coding data to make it difficult (and hopefully—with the most advanced schemes—impossible) for unauthorized users to read. In this exercise you’ll investigate a simple scheme for encrypting and decrypting data. A company that wants to send data over the Internet has asked you to write a program that will encrypt it so that it may be transmitted more securely. All the data is transmitted as four-digit integers. Your app should read a four-digit integer entered by the user and encrypt it as follows: Replace each digit with the result of adding 7 to the digit and getting the remainder after dividing the new value by 10. Then swap the first digit with the third, and swap the second digit with the fourth. Then display the encrypted integer. Write a separate app that inputs an encrypted four-digit integer and decrypts it (by reversing the encryption scheme) to form the original number. Use the format specifier D4 to display the encrypted value in case the number starts with a 0. The format specifier D is used to format integer values, and D4 indicates that the value should be formatted with a minimum of four digit positions, possibly with leading zeros. 

Please use C# language and submit as a zip file. 

    • 3 years ago
    • 35
    Answer(1)

    Purchase the answer to view it

    blurred-text
    • attachment
      Cryptography.cs
    • attachment
      VID-20210223-WA0022.mp4
    • attachment
      importedinstruction.txt