Decrypt Vnc Password

[Solved] Decrypt Vnc Password | Ruby - Code Explorer | yomemimo.com
Question : decrypt vnc password

Answered by : tarik-caramanico

import sys,pyDes
password = your16charString
result = pyDes.des([232, 74, 214, 96, 196, 114, 26, 224]).decrypt(bytearray.fromhex(password)).decode('utf-8').replace('\x00', '')
print result

Source : | Last Update : Sun, 29 May 22

Answers related to decrypt vnc password

Code Explorer Popular Question For Ruby