-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
19 lines (12 loc) · 995 Bytes
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Brian von Behren
HW1
Readme
Instructions and notes:
* All of the source code is contained in a single file - /home/bvonbehr/hw1/Program.cs
* All of the other files are necessary for the dotnet compiler to build and execute the project.
To execute:
1. navigate to the hw1 directory [cd /home/bvonbehr/hw1]
2. Build and run the program with the command [dotnet run]
* The process may take a few seconds before the program begins
Program notes:
A single program is used for both encryption and decryption. When the program starts you will select the mode of operation and then enter either the plain text or cipher text of the left and right word. You must enter these values as an 8-bit hexadecimal number. Do not use the '0x' prefix. The program will then perform the selected operation and display the results. If the third mode of "Both Encrypt and Decrypt" is selected, the plain text will be encrypted and then immediately decrypted, return the original value.