XOR加密
由于我的VScode出了问题就在终端里使用。
text='20201225'
import hashlib
m=hashlib.md5()
m. update(str.encode(text))
m=m.hexdigest()
import uuid
res=str(uuid.uuid4)
print(res)
res+res.replace('-','')
key=res[:32]
a=int(m,16)
b=int(key,16)
cipertext=hex(c)
print(m)
print (key)
print (decodem)