Skip to content

Commit f6566eb

Browse files
authored
Update README.md
1 parent 9a16737 commit f6566eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
A cybersecurity project that implements an advanced version of the Caesar Cipher encryption algorithm with additional features for cryptanalysis and security.
77

8-
## Features
8+
## Features
99

1010
- **Basic Caesar Cipher** - Traditional implementation with customizable shift values
1111
- **Advanced Caesar Cipher** - Enhanced version using key-based shifting for increased security
@@ -30,7 +30,7 @@ A cybersecurity project that implements an advanced version of the Caesar Cipher
3030

3131
## Detailed Usage Guide
3232

33-
### Initial Encryption and Decryption ⚙️
33+
### Initial Encryption and Decryption
3434

3535
#### Command Line
3636

@@ -52,19 +52,19 @@ python caesar_cli.py decrypt "Olssv, Dvysk!" -s 7
5252
# Output: Hello, World!
5353
```
5454

55-
#### Web Interface 👩🏻‍💻
55+
#### Web Interface
5656

5757
1. Navigate to the "Encrypt" tab
5858
2. Enter "Hello, World!" in the "Message to Encrypt" field
5959
3. Set shift value to 5
6060
4. Click "Encrypt" button
6161
5. Result: "Mjqqt, Btwqi!"
6262

63-
### Advanced Key-Based Encryption
63+
### Advanced Key-Based Encryption
6464

6565
The advanced mode uses both a shift value and a key for additional security, creating a variable shift pattern based on the key characters.
6666

67-
#### Command Line 🔐
67+
#### Command Line
6868

6969
```bash
7070
# Encrypt using advanced key-based method
@@ -76,7 +76,7 @@ python caesar_cli.py decrypt "Wphsg, Ogioe!" -s 5 -k "SECRET"
7676
# Output: Hello, World!
7777
```
7878

79-
#### Web Interface 🕸️
79+
#### Web Interface
8080

8181
1. Navigate to the "Encrypt" tab
8282
2. Enter "Hello, World!" in the "Message to Encrypt" field
@@ -85,11 +85,11 @@ python caesar_cli.py decrypt "Wphsg, Ogioe!" -s 5 -k "SECRET"
8585
5. Click "Encrypt" button
8686
6. Result: "Wphsg, Ogioe!"
8787

88-
### Brute Force Decryption
88+
### Brute Force Decryption
8989

9090
When you don't know the shift value, brute force tries all possible shifts (0-25).
9191

92-
#### Command Line 👩🏻‍💻
92+
#### Command Line
9393

9494
```bash
9595
# Brute force an encrypted message

0 commit comments

Comments
 (0)