We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75ab4d commit 7cdbd5eCopy full SHA for 7cdbd5e
ciphers/break_vigenere.py
@@ -208,7 +208,9 @@ def find_key_from_vigenere_cipher(ciphertext: str) -> str:
208
209
210
if __name__ == "__main__":
211
- with open("ciphertext.txt", "r") as file: # insert the name of your file
212
- ciphertext = file.read()
213
- key = find_key_from_vigenere_cipher(ciphertext)
214
- print(key)
+ pass
+ # # how to execute
+ # with open("ciphertext.txt") as file:
+ # ciphertext = file.read()
215
+ # key = find_key_from_vigenere_cipher(ciphertext)
216
+ # print(key)
0 commit comments