/LoginServer/src/main/java/com/aionemu/loginserver/network/ncrypt/KeyGen.java

https://github.com/opentree/aionj-hungary · Java · 104 lines · 38 code · 19 blank · 47 comment · 1 complexity · bd101d21aa8d48ab497053f33a6db2ae MD5 · raw file

  1. /**
  2. * This file is part of aion-emu <aion-emu.com>.
  3. *
  4. * aion-emu is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * aion-emu is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package com.aionemu.loginserver.network.ncrypt;
  18. import java.security.GeneralSecurityException;
  19. import java.security.KeyPairGenerator;
  20. import java.security.spec.RSAKeyGenParameterSpec;
  21. import javax.crypto.Cipher;
  22. import javax.crypto.KeyGenerator;
  23. import javax.crypto.SecretKey;
  24. import org.apache.log4j.Logger;
  25. import com.aionemu.commons.utils.Rnd;
  26. /**
  27. * Key generator. It generates keys or keyPairs for Blowfish and RSA
  28. *
  29. * @author -Nemesiss-
  30. *
  31. */
  32. public class KeyGen
  33. {
  34. /**
  35. * Logger for this class.
  36. */
  37. protected static final Logger log = Logger.getLogger(KeyGen.class);
  38. /**
  39. * Key generator for blowfish
  40. */
  41. private static KeyGenerator blowfishKeyGen;
  42. /**
  43. * Public/Static RSA KeyPairs with encrypted modulus N
  44. */
  45. private static EncryptedRSAKeyPair[] encryptedRSAKeyPairs;
  46. /**
  47. * Initialize Key Generator (Blowfish keygen and RSA keygen)
  48. *
  49. * @throws GeneralSecurityException
  50. */
  51. public static void init() throws GeneralSecurityException
  52. {
  53. log.info("Initializing Key Generator...");
  54. blowfishKeyGen = KeyGenerator.getInstance("Blowfish");
  55. KeyPairGenerator rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
  56. RSAKeyGenParameterSpec spec = new RSAKeyGenParameterSpec(1024, RSAKeyGenParameterSpec.F4);
  57. rsaKeyPairGenerator.initialize(spec);
  58. encryptedRSAKeyPairs = new EncryptedRSAKeyPair[10];
  59. for (int i = 0; i < 10; i++)
  60. {
  61. encryptedRSAKeyPairs[i] = new EncryptedRSAKeyPair(rsaKeyPairGenerator.generateKeyPair());
  62. }
  63. // Pre-init RSA cipher.. saving about 300ms
  64. Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  65. rsaCipher.init(Cipher.DECRYPT_MODE, encryptedRSAKeyPairs[0].getRSAKeyPair().getPrivate());
  66. }
  67. /**
  68. * Generate and return blowfish key
  69. *
  70. * @return Random generated blowfish key
  71. */
  72. public static SecretKey generateBlowfishKey()
  73. {
  74. return blowfishKeyGen.generateKey();
  75. }
  76. /**
  77. * Get common RSA Public/Static Key Pair with encrypted modulus N
  78. *
  79. * @return encryptedRSAkeypairs
  80. */
  81. public static EncryptedRSAKeyPair getEncryptedRSAKeyPair()
  82. {
  83. return encryptedRSAKeyPairs[Rnd.nextInt(10)];
  84. }
  85. }