Package com.l2jfrozen.crypt

Examples of com.l2jfrozen.crypt.LoginCrypt


    _scrambledPair = LoginController.getInstance().getScrambledRSAKeyPair();
    _blowfishKey = LoginController.getInstance().getBlowfishKey();
    _sessionId = Rnd.nextInt(Integer.MAX_VALUE);
    _connectionStartTime = System.currentTimeMillis();
    _loginCrypt = new LoginCrypt();
    _loginCrypt.setKey(_blowfishKey);
    LoginController.getInstance().addLoginClient(this);
    // This checkup must go next to BAN because it can cause decrease ban account time
    if (!BruteProtector.canLogin(ip))
    {
View Full Code Here

TOP

Related Classes of com.l2jfrozen.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.