11 lines
206 B
Python
11 lines
206 B
Python
|
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()
|