cryptopals/helper.py

6 lines
113 B
Python
Raw Permalink Normal View History

2025-04-25 20:32:42 -04:00
def read_file(filepath):
with open(filepath, "r") as file:
content = file.read()
return content