12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.loginserver.gameserverpackets;
- import java.security.GeneralSecurityException;
- import java.security.interfaces.RSAPrivateKey;
- import java.util.logging.Logger;
- import javax.crypto.Cipher;
- import com.l2jserver.util.network.BaseRecievePacket;
- /**
- * @author -Wooden-
- *
- */
- public class BlowFishKey extends BaseRecievePacket
- {
- byte[] _key;
- protected static final Logger _log = Logger.getLogger(BlowFishKey.class.getName());
- /**
- * @param decrypt
- */
- public BlowFishKey(byte[] decrypt, RSAPrivateKey privateKey)
- {
- super(decrypt);
- int size = readD();
- byte[] tempKey = readB(size);
- try
- {
- byte [] tempDecryptKey;
- Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
- rsaCipher.init(Cipher.DECRYPT_MODE, privateKey);
- tempDecryptKey = rsaCipher.doFinal(tempKey);
- // there are nulls before the key we must remove them
- int i = 0;
- int len = tempDecryptKey.length;
- for(; i < len; i++)
- {
- if(tempDecryptKey[i] != 0)
- break;
- }
- _key = new byte[len-i];
- System.arraycopy(tempDecryptKey,i,_key,0,len-i);
- }
- catch(GeneralSecurityException e)
- {
- _log.severe("Error While decrypting blowfish key (RSA)");
- e.printStackTrace();
- }
- /*catch(IOException ioe)
- {
- //TODO: manage
- }*/
- }
- public byte[] getKey()
- {
- return _key;
- }
- }
|