/loginserver/src/loginserver/network/ncrypt/KeyGen.java

http://u3j-aion-beta.googlecode.com/ · Java · 98 lines · 38 code · 19 blank · 41 comment · 1 complexity · 2fad82849179a1d026a78bd3ba287eec 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 loginserver.network.ncrypt;
  16. import java.security.GeneralSecurityException;
  17. import java.security.KeyPairGenerator;
  18. import java.security.spec.RSAKeyGenParameterSpec;
  19. import javax.crypto.Cipher;
  20. import javax.crypto.KeyGenerator;
  21. import javax.crypto.SecretKey;
  22. import org.apache.log4j.Logger;
  23. import commons.utils.Rnd;
  24. /**
  25. * Key generator. It generates keys or keyPairs for Blowfish and RSA
  26. */
  27. public class KeyGen
  28. {
  29. /**
  30. * Logger for this class.
  31. */
  32. protected static final Logger log = Logger.getLogger(KeyGen.class);
  33. /**
  34. * Key generator for blowfish
  35. */
  36. private static KeyGenerator blowfishKeyGen;
  37. /**
  38. * Public/Static RSA KeyPairs with encrypted modulus N
  39. */
  40. private static EncryptedRSAKeyPair[] encryptedRSAKeyPairs;
  41. /**
  42. * Initialize Key Generator (Blowfish keygen and RSA keygen)
  43. *
  44. * @throws GeneralSecurityException
  45. */
  46. public static void init() throws GeneralSecurityException
  47. {
  48. log.info("Iniciando el generador de claves de acceso..");
  49. blowfishKeyGen = KeyGenerator.getInstance("Blowfish");
  50. KeyPairGenerator rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
  51. RSAKeyGenParameterSpec spec = new RSAKeyGenParameterSpec(1024, RSAKeyGenParameterSpec.F4);
  52. rsaKeyPairGenerator.initialize(spec);
  53. encryptedRSAKeyPairs = new EncryptedRSAKeyPair[10];
  54. for(int i = 0; i < 10; i++)
  55. {
  56. encryptedRSAKeyPairs[i] = new EncryptedRSAKeyPair(rsaKeyPairGenerator.generateKeyPair());
  57. }
  58. // Pre-init RSA cipher.. saving about 300ms
  59. Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  60. rsaCipher.init(Cipher.DECRYPT_MODE, encryptedRSAKeyPairs[0].getRSAKeyPair().getPrivate());
  61. }
  62. /**
  63. * Generate and return blowfish key
  64. *
  65. * @return Random generated blowfish key
  66. */
  67. public static SecretKey generateBlowfishKey()
  68. {
  69. return blowfishKeyGen.generateKey();
  70. }
  71. /**
  72. * Get common RSA Public/Static Key Pair with encrypted modulus N
  73. * @return encryptedRSAkeypairs
  74. */
  75. public static EncryptedRSAKeyPair getEncryptedRSAKeyPair()
  76. {
  77. return encryptedRSAKeyPairs[Rnd.nextInt(10)];
  78. }
  79. }