Package l2p.loginserver.crypt

Examples of l2p.loginserver.crypt.LoginCrypt


    _state = LoginClientState.CONNECTED;
    String ip = getIpAddress();
    _scrambledPair = LoginController.getInstance().getScrambledRSAKeyPair();
    _blowfishKey = LoginController.getInstance().getBlowfishKey();
    _connectionStartTime = System.currentTimeMillis();
    _loginCrypt = new LoginCrypt();
    _loginCrypt.setKey(_blowfishKey);
    _sessionId = con.hashCode();
    if(IpManager.getInstance().CheckIp(ip))
    {
      close(new AccountKicked(AccountKickedReason.REASON_PERMANENTLY_BANNED));
View Full Code Here

TOP

Related Classes of l2p.loginserver.crypt.LoginCrypt

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.