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
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,8 +83,31 @@ print("The Encrypted message is: ", encrpyted_message)
83
83
This code can only be used when we know key else we have try brute force method by trying for every key value. In this method we undo the previous code to get original message.
84
84
85
85
```python
86
+
#Create a function for Decryption algorithm
87
+
defdecrpyt_message(text, key):
86
88
87
-
```
89
+
decrypted_msg =""# initially empty string is created
0 commit comments