/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
- package loginserver.network.ncrypt;
-
- import java.security.GeneralSecurityException;
- import java.security.KeyPairGenerator;
- import java.security.spec.RSAKeyGenParameterSpec;
-
- import javax.crypto.Cipher;
- import javax.crypto.KeyGenerator;
- import javax.crypto.SecretKey;
-
- import org.apache.log4j.Logger;
-
- import commons.utils.Rnd;
-
-
- /**
- * Key generator. It generates keys or keyPairs for Blowfish and RSA
- *
- * @author -Nemesiss-
- *
- */
- public class KeyGen
- {
- /**
- * Logger for this class.
- */
- protected static final Logger log = Logger.getLogger(KeyGen.class);
-
- /**
- * Key generator for blowfish
- */
- private static KeyGenerator blowfishKeyGen;
-
- /**
- * Public/Static RSA KeyPairs with encrypted modulus N
- */
- private static EncryptedRSAKeyPair[] encryptedRSAKeyPairs;
-
- /**
- * Initialize Key Generator (Blowfish keygen and RSA keygen)
- *
- * @throws GeneralSecurityException
- */
- public static void init() throws GeneralSecurityException
- {
- log.info("Initializing Key Generator...");
-
- blowfishKeyGen = KeyGenerator.getInstance("Blowfish");
-
- KeyPairGenerator rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
-
- RSAKeyGenParameterSpec spec = new RSAKeyGenParameterSpec(1024, RSAKeyGenParameterSpec.F4);
-
- rsaKeyPairGenerator.initialize(spec);
-
- encryptedRSAKeyPairs = new EncryptedRSAKeyPair[10];
-
- for(int i = 0; i < 10; i++)
- {
- encryptedRSAKeyPairs[i] = new EncryptedRSAKeyPair(rsaKeyPairGenerator.generateKeyPair());
- }
-
- // Pre-init RSA cipher.. saving about 300ms
- Cipher rsaCipher = Cipher.getInstance("RSA/ECB/nopadding");
-
- rsaCipher.init(Cipher.DECRYPT_MODE, encryptedRSAKeyPairs[0].getRSAKeyPair().getPrivate());
- }
-
- /**
- * Generate and return blowfish key
- *
- * @return Random generated blowfish key
- */
- public static SecretKey generateBlowfishKey()
- {
- return blowfishKeyGen.generateKey();
- }
-
- /**
- * Get common RSA Public/Static Key Pair with encrypted modulus N
- * @return encryptedRSAkeypairs
- */
- public static EncryptedRSAKeyPair getEncryptedRSAKeyPair()
- {
- return encryptedRSAKeyPairs[Rnd.nextInt(10)];
- }
- }