Exemplo n.º 1
0
        public MUIS(int port)
        {
            this._port = port;

            RNG.NextBytes(_clientSessionKey);
            _sessionCipher = new PS2_RC4(_clientSessionKey, CipherContext.RC_CLIENT_SESSION);
        }
Exemplo n.º 2
0
 public MAS()
 {
     _sessionCipher = new PS2_RC4(Utils.FromString(Program.KEY), CipherContext.RC_CLIENT_SESSION);
 }