-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
44 lines (44 loc) · 1.83 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
To run, have a python environment setup with the listed dependencies properly installed:
- easygui 0.98.1
- pip 10.0.1
- pyperclip 1.7.0
- setuptools 39.1.0
===============================================================
Now that your enviroment and packages are setup, run "Main.py"
===============================================================
Test Case for Encryption with Affine Cipher:
- Select "Encryption"
- Select "Affine Cipher"
- Select "Plaintext"
- Enter for Text: "Affine Cipher"
- Enter for A: "7"
- Enter for B: "3"
- See output (should show the same output as "affine_sample_1.png")
===============================================================
Test Case for Decryption with Affine Cipher:
- Select "Decryption"
- Select "Affine Cipher"
- Select "Cipher Text"
- Enter for Text: "*18?FMT"
- Enter for A: "7"
- Enter for B: "3"
- See output (should show the same output as "affine_sample_2.png")
===============================================================
===============================================================
===============================================================
Test Case for Encryption with Vigenere Cipher:
- Select "Encryption"
- Select "Vigenere Cipher"
- Select "Plaintext"
- Enter for Text: "This is basic implementation of Vignere Cipher"
- Enter for key: "PIZZA"
- See output (should show the same output as "vigenere_sample_1.png")
===============================================================
Test Case for Decryption with Vigenere Cipher:
- Select "Decryption"
- Select "Vigenere Cipher"
- Select "Cipher Text"
- Enter for Text: "Beware the Jabberwock, my son! The jaws that bite, the claws that catch!"
- Enter for key: "VIGENERECIPHER"
- See output (should show the same output as "vigenere_sample_2.png")
===============================================================