/L2EmuProject-Login/src/main/java/net/l2emuproject/loginserver/network/gameserverpackets/BlowFishKey.java

http://l2emu.googlecode.com/ · Java · 59 lines · 36 code · 5 blank · 18 comment · 3 complexity · 662ab1e4645c12c906db3efe714be243 MD5 · raw file

  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package net.l2emuproject.loginserver.network.gameserverpackets;
  16. import java.security.GeneralSecurityException;
  17. import java.security.interfaces.RSAPrivateKey;
  18. import javax.crypto.Cipher;
  19. /**
  20. * @author -Wooden-
  21. */
  22. public final class BlowFishKey extends GameToLoginPacket
  23. {
  24. private byte[] _key;
  25. public BlowFishKey(byte[] decrypt, RSAPrivateKey privateKey)
  26. {
  27. super(decrypt);
  28. final int size = readD();
  29. final byte[] tempKey = readB(size);
  30. try
  31. {
  32. byte[] tempDecryptKey;
  33. final Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  34. rsaCipher.init(Cipher.DECRYPT_MODE, privateKey);
  35. tempDecryptKey = rsaCipher.doFinal(tempKey);
  36. // there are nulls before the key we must remove them
  37. int i = 0;
  38. final int len = tempDecryptKey.length;
  39. for (; i < len; i++)
  40. if (tempDecryptKey[i] != 0)
  41. break;
  42. _key = new byte[len - i];
  43. System.arraycopy(tempDecryptKey, i, _key, 0, len - i);
  44. }
  45. catch (final GeneralSecurityException e)
  46. {
  47. _log.fatal("Error While decrypting blowfish key (RSA)", e);
  48. }
  49. }
  50. public byte[] getKey()
  51. {
  52. return _key;
  53. }
  54. }