[CryptoHack] Base64

거대한리트리버·2023년 8월 13일
0
post-thumbnail

문제

풀이

주어진 hex string을 byte로 변환한 후 base64로 변환하면 되는 문제이다.
bytes.fromhex 함수와 base64.b64encode 함수를 이용하여 해결한다.

import base64
hex_string = '72bca9b68fc16ac7beeb8f849dca1d8a783e8acf9679bf9269f7bf'

hex_to_bytes = bytes.fromhex(hex_string)
bytes_to_base64 =  base64.b64encode(hex_to_bytes)
print(bytes_to_base64)

FLAG = crypto/Base+64+Encoding+is+Web+Safe/

profile
강아지귀여워

0개의 댓글