cryptopals/01.py

11 lines
206 B
Python
Raw Normal View History

import helper, cryptlib
def main():
hex_string = helper.read_file("data/01.txt")
solution = cryptlib.hex_to_base64(hex_string)
print(solution.decode())
if __name__ == '__main__':
main()