初步的虚拟机vnc连接

This commit is contained in:
2024-07-30 16:36:45 +08:00
parent 83fd8fffd4
commit 24131b0050
9 changed files with 1751 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
import pyDes
class RFBDes(pyDes.des):
def setKey(self, key):
"""
RFB protocol for authentication requires client to encrypt
challenge sent by server with password using DES method. However,
bits in each byte of the password are put in reverse order before
using it as encryption key.
"""
newkey = list()
for bsrc in key:
btgt = 0
for i in range(8):
if bsrc & (1 << i):
btgt = btgt | (1 << 7-i)
newkey.append(btgt)
super(RFBDes, self).setKey(newkey)