You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,7 +50,28 @@ Decryption is a process of decoding the encoded data. Converting the ciphertext
54
50
## Installation
55
51
You require python IDE on your laptop/PC.
56
52
57
-
## Encryption
58
-
### Algorithm
53
+
## Encryption Python Code
54
+
The plain text character is traversed one at a time. Each letter of plain text is replaced by a letter with some fixed number of positions down with alphabet. After the steps is followed, a new string is generated which is referred as cipher text. This algorithm is known as "Caeser Cipher".
55
+
```python
56
+
# Create a function for Encryption algorithm
57
+
defencrpyt_message(text, key):
58
+
encrypted_msg =""# initially empty string is created
0 commit comments