hex string으로 주어진 flag를 byte로 변환하여 flag를 얻는 문제이다.
문제에 주어진 bytes.fromhex 함수를 사용하여 쉽게 해결할 수 있다.
hex_string = '63727970746f7b596f755f77696c6c5f62655f776f726b696e675f776974685f6865785f737472696e67735f615f6c6f747d'
hex_to_bytes = bytes.fromhex(hex_string)
print(hex_to_bytes)
FLAG = crypto{You_will_be_working_with_hex_strings_a_lot}