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

http://slx-beta.googlecode.com/ · Java · 87 lines · 38 code · 19 blank · 30 comment · 1 complexity · 0b526c54297b7c21b08ca1d32b24a59b MD5 · raw file

  1. package loginserver.network.ncrypt;
  2. import java.security.GeneralSecurityException;
  3. import java.security.KeyPairGenerator;
  4. import java.security.spec.RSAKeyGenParameterSpec;
  5. import javax.crypto.Cipher;
  6. import javax.crypto.KeyGenerator;
  7. import javax.crypto.SecretKey;
  8. import org.apache.log4j.Logger;
  9. import commons.utils.Rnd;
  10. /**
  11. * Key generator. It generates keys or keyPairs for Blowfish and RSA
  12. *
  13. * @author -Nemesiss-
  14. *
  15. */
  16. public class KeyGen
  17. {
  18. /**
  19. * Logger for this class.
  20. */
  21. protected static final Logger log = Logger.getLogger(KeyGen.class);
  22. /**
  23. * Key generator for blowfish
  24. */
  25. private static KeyGenerator blowfishKeyGen;
  26. /**
  27. * Public/Static RSA KeyPairs with encrypted modulus N
  28. */
  29. private static EncryptedRSAKeyPair[] encryptedRSAKeyPairs;
  30. /**
  31. * Initialize Key Generator (Blowfish keygen and RSA keygen)
  32. *
  33. * @throws GeneralSecurityException
  34. */
  35. public static void init() throws GeneralSecurityException
  36. {
  37. log.info("Initializing Key Generator...");
  38. blowfishKeyGen = KeyGenerator.getInstance("Blowfish");
  39. KeyPairGenerator rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
  40. RSAKeyGenParameterSpec spec = new RSAKeyGenParameterSpec(1024, RSAKeyGenParameterSpec.F4);
  41. rsaKeyPairGenerator.initialize(spec);
  42. encryptedRSAKeyPairs = new EncryptedRSAKeyPair[10];
  43. for(int i = 0; i < 10; i++)
  44. {
  45. encryptedRSAKeyPairs[i] = new EncryptedRSAKeyPair(rsaKeyPairGenerator.generateKeyPair());
  46. }
  47. // Pre-init RSA cipher.. saving about 300ms
  48. Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
  49. rsaCipher.init(Cipher.DECRYPT_MODE, encryptedRSAKeyPairs[0].getRSAKeyPair().getPrivate());
  50. }
  51. /**
  52. * Generate and return blowfish key
  53. *
  54. * @return Random generated blowfish key
  55. */
  56. public static SecretKey generateBlowfishKey()
  57. {
  58. return blowfishKeyGen.generateKey();
  59. }
  60. /**
  61. * Get common RSA Public/Static Key Pair with encrypted modulus N
  62. * @return encryptedRSAkeypairs
  63. */
  64. public static EncryptedRSAKeyPair getEncryptedRSAKeyPair()
  65. {
  66. return encryptedRSAKeyPairs[Rnd.nextInt(10)];
  67. }
  68. }