xshell 加密方式?

尽管这是一个很久的问题了

以下给出加密代码,我想应该很明了的,有密码学基础的应该能写出解密代码:

from hashlib import * from Crypto.Cipher import ARC4 from base64 import * cipher = ARC4.new(md5(b!X@s#h$e%l^l&).digest()) print(b64encode(cipher.encrypt(bhello)).decode()) cipher = ARC4.new(md5(b!X@s#h$e%l^l&).digest()) print(b64encode(cipher.encrypt(bhello1)).decode())

输出结果分别就是hello和hello1的加密结果。

顺带一提,XShell 5开始不再采用这种加密算法

请问这个问题你最后怎么解决的?我也有这样的想法