I've hidden some data using XOR with a single byte, but that byte is a secret. Don't forget to decode from hex first.
Solution
from pwn import xorhex_string ='73626960647f6b206821204f21254f7d694f7624662065622127234f726927756d'byte_string =bytes.fromhex(hex_string)flag =""for num inrange(256): result =xor(byte_string, num)ifb'crypto'in result:breakflag = result.decode()print(flag)