solved the first 5 problems
This commit is contained in:
parent
5f28587c15
commit
8211d16af3
9 changed files with 8235 additions and 5 deletions
9
05.py
Normal file
9
05.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import helper, cryptlib
|
||||
|
||||
def main():
|
||||
string_content = helper.read_file("data/05.txt").strip()
|
||||
ciphertext = cryptlib.repeating_xor(string_content)
|
||||
print(f"Plaintext:\n{string_content}\n\nCiphertext:\n{ciphertext}")
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue