/src/main/java/com/l2jserver/loginserver/network/gameserverpackets/BlowFishKey.java

https://bitbucket.org/Rofgar/l2j_server · Java · 80 lines · 48 code · 6 blank · 26 comment · 4 complexity · 0b041fb67caaa93a6d7854b0c97cbb44 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2018 L2J Server
  3. *
  4. * This file is part of L2J Server.
  5. *
  6. * L2J Server is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J Server is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.l2jserver.loginserver.network.gameserverpackets;
  20. import java.security.GeneralSecurityException;
  21. import java.util.logging.Level;
  22. import java.util.logging.Logger;
  23. import javax.crypto.Cipher;
  24. import com.l2jserver.Config;
  25. import com.l2jserver.loginserver.GameServerThread;
  26. import com.l2jserver.loginserver.network.L2JGameServerPacketHandler.GameServerState;
  27. import com.l2jserver.util.crypt.NewCrypt;
  28. import com.l2jserver.util.network.BaseRecievePacket;
  29. /**
  30. * @author -Wooden-
  31. */
  32. public class BlowFishKey extends BaseRecievePacket
  33. {
  34. protected static final Logger _log = Logger.getLogger(BlowFishKey.class.getName());
  35. /**
  36. * @param decrypt
  37. * @param server
  38. */
  39. public BlowFishKey(byte[] decrypt, GameServerThread server)
  40. {
  41. super(decrypt);
  42. int size = readD();
  43. byte[] tempKey = readB(size);
  44. try
  45. {
  46. byte[] tempDecryptKey;
  47. Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  48. rsaCipher.init(Cipher.DECRYPT_MODE, server.getPrivateKey());
  49. tempDecryptKey = rsaCipher.doFinal(tempKey);
  50. // there are nulls before the key we must remove them
  51. int i = 0;
  52. int len = tempDecryptKey.length;
  53. for (; i < len; i++)
  54. {
  55. if (tempDecryptKey[i] != 0)
  56. {
  57. break;
  58. }
  59. }
  60. byte[] key = new byte[len - i];
  61. System.arraycopy(tempDecryptKey, i, key, 0, len - i);
  62. server.SetBlowFish(new NewCrypt(key));
  63. if (Config.DEBUG)
  64. {
  65. _log.info("New BlowFish key received, Blowfih Engine initialized:");
  66. }
  67. server.setLoginConnectionState(GameServerState.BF_CONNECTED);
  68. }
  69. catch (GeneralSecurityException e)
  70. {
  71. _log.log(Level.SEVERE, "Error While decrypting blowfish key (RSA): " + e.getMessage(), e);
  72. }
  73. }
  74. }