k=90
d=open('/opt/ml-infra/compute-engine','rb').read()
r=bytes([b^k for b in d])
print('First 4 bytes:', r[:4])
open('/opt/ml-infra/compute-engine-raw','wb').write(r)
print('Written', len(r), 'bytes')
