This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import sys | |
import struct | |
# pip3 install salsa20 | |
from salsa20 import Salsa20_xor | |
import os | |
#https://github.com/Nenkai/PDTools/blob/master/SimulatorInterface/SimulatorInterface.cs | |
SendDelaySeconds = 10 | |
ReceivePort = 33740 | |
SendPort = 33739 |