[CryptoHack] Bytes and Big Integers

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

문제

풀이

long은 정수 표현 방식 중 하나이다. message가 long 형식으로 주어졌으므로
long_to_bytes 함수를 통해 flag를 바로 구할 수 있다.

from Crypto.Util.number import *

cipher = 11515195063862318899931685488813747395775516287289682636499965282714637259206269
print(long_to_bytes(cipher))

FLAG = crypto{3nc0d1n6_4ll_7h3_w4y_d0wn}

profile
강아지귀여워

0개의 댓글