-
-
Notifications
You must be signed in to change notification settings - Fork 46.9k
create monoalphabetic cipher #3449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d24a54d
create monoalphabetic cipher
radadiyamohit81 949790a
update file
radadiyamohit81 ac84953
update file
radadiyamohit81 7d41624
update file
radadiyamohit81 5019b82
update file
radadiyamohit81 4ff85e5
update file
radadiyamohit81 8429a56
update after testing flake8 on this code
radadiyamohit81 b01883e
update file
radadiyamohit81 e038ac4
update file
radadiyamohit81 0aba1d0
update file
radadiyamohit81 63a3e41
update file
radadiyamohit81 a95f5a4
update file
radadiyamohit81 ee5ce52
update file
radadiyamohit81 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | ||
|
||
|
||
def translate_message(key, message, mode): | ||
""" | ||
>>> translate_message("QWERTYUIOPASDFGHJKLZXCVBNM", "When you do the common things in life in an uncommon way, you will command the attention of the world", "encrypt") | ||
'Vitf ngx rg zit egddgf zioful of soyt of qf xfegddgf vqn, ngx voss egddqfr zit qzztfzogf gy zit vgksr' | ||
""" | ||
translated = "" | ||
charsA = LETTERS | ||
charsB = key | ||
if mode == "decrypt": | ||
# For decrypting, we can use the same code as encrypting. We | ||
# just need to swap where the key and LETTERS strings are used. | ||
charsA, charsB = charsB, charsA | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# loop through each symbol in the message | ||
for symbol in message: | ||
if symbol.upper() in charsA: | ||
# encrypt/decrypt the symbol | ||
symIndex = charsA.find(symbol.upper()) | ||
if symbol.isupper(): | ||
translated += charsB[symIndex].upper() | ||
else: | ||
translated += charsB[symIndex].lower() | ||
else: | ||
# symbol is not in LETTERS, just add it | ||
translated += symbol | ||
return translated | ||
|
||
|
||
def encrypt_message(key: str, message: str) -> str: | ||
""" | ||
>>> encrypt_message("QWERTYUIOPASDFGHJKLZXCVBNM", "When you do the common things in life in an uncommon way, you will command the attention of the world") | ||
'Vitf ngx rg zit egddgf zioful of soyt of qf xfegddgf vqn, ngx voss egddqfr zit qzztfzogf gy zit vgksr' | ||
""" | ||
return translate_message(key, message, "encrypt") | ||
|
||
|
||
def decrypt_message(key, message): | ||
""" | ||
>>> decrypt_message("QWERTYUIOPASDFGHJKLZXCVBNM", "When you do the common things in life in an uncommon way, you will command the attention of the world") | ||
'Bpcy fig mi epc vizziy ephyol hy shnc hy ky gyvizziy bkf, fig bhss vizzkym epc keecyehiy in epc bidsm' | ||
""" | ||
return translate_message(key, message, "decrypt") | ||
|
||
|
||
def main(): | ||
myMessage = "When you do the common things in life in an uncommon way, you will command the attention of the world" | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
myKey = "QWERTYUIOPASDFGHJKLZXCVBNM" | ||
myMode = "decrypt" # set to 'encrypt' or 'decrypt' | ||
|
||
if myMode == "encrypt": | ||
translated = encrypt_message(myKey, myMessage) | ||
elif myMode == "decrypt": | ||
translated = decrypt_message(myKey, myMessage) | ||
print("Using key %s" % (myKey)) | ||
print("The %sed message is:" % (myMode)) | ||
print(translated) | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.