solved the first 5 problems

This commit is contained in:
Joshua Flores 2025-04-26 22:37:02 -04:00
parent 5f28587c15
commit 8211d16af3
No known key found for this signature in database
GPG key ID: CE41E342DBBBB9B7
9 changed files with 8235 additions and 5 deletions

9
05.py Normal file
View 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()