Package l2p.loginserver.crypt

Examples of l2p.loginserver.crypt.NewCrypt


    }
  }

  public void initBlowfish(byte[] key)
  {
    crypt = key == null ? ConnectionCryptDummy.instance : new NewCrypt(key);
    log.info("Init connection crypt for gameserver " + getConnectionIpAddress() + ": " + crypt.getClass().getSimpleName());
  }
View Full Code Here


        data[i] = (byte) Rnd.get(256);
      }
    }
    synchronized(sendPacketQueue)
    {
      crypt = data == null ? ConnectionCryptDummy.instance : new NewCrypt(data);
      sendPacketQueue.addFirst(new Auth());
      sendPacketQueue.addFirst(new BlowFishKey(data, this));
    }
    if(Config.DEBUG_GS_LS)
    {
View Full Code Here

TOP

Related Classes of l2p.loginserver.crypt.NewCrypt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.