/L2EmuProject-Game/src/main/java/net/l2emuproject/gameserver/network/gameserverpackets/BlowFishKey.java

http://l2emu.googlecode.com/ · Java · 45 lines · 24 code · 4 blank · 17 comment · 0 complexity · 06c4d96397293b93b37f1e190b3b6d8f 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.gameserver.network.gameserverpackets;
  16. import java.security.GeneralSecurityException;
  17. import java.security.interfaces.RSAPublicKey;
  18. import javax.crypto.Cipher;
  19. /**
  20. * @author -Wooden-
  21. */
  22. public final class BlowFishKey extends GameServerBasePacket
  23. {
  24. public BlowFishKey(byte[] blowfishKey, RSAPublicKey publicKey)
  25. {
  26. super(0x00);
  27. byte[] encrypted = null;
  28. try
  29. {
  30. Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  31. rsaCipher.init(Cipher.ENCRYPT_MODE, publicKey);
  32. encrypted = rsaCipher.doFinal(blowfishKey);
  33. writeD(encrypted.length);
  34. writeB(encrypted);
  35. }
  36. catch (GeneralSecurityException e)
  37. {
  38. _log.fatal("Error While encrypting blowfish key for transmision (Crypt error)", e);
  39. }
  40. }
  41. }