Cryptography
القيصر الصغير
from egypt import محمد_رمضان
def التشفير(النص):
النص_المشفر = ""
for حرف in النص:
النص_المشفر += chr(((حرف) + محمد_رمضان * 5) % 256)
return النص_المشفر
النص = b"REDACTED"
النص_المشفر = (التشفير(النص))
print(النص_المشفر)ct = b'Uqf~lwtzsixHYKYm9spd~5zdk5wd~5zwdu9wy6h6u9y65s'
flag = ''
for i in ct:
flag += chr(i - 5)
print(flag)
# PlaygroundsCTF{Th4nk_y0u_f0r_y0ur_p4rt1c1p4t10n}NotSoBabyRSA
Building Pyramids
Simple RSA
Calc 101
Last updated