I have added bcprov-jdk15on-1.58.jar file in Eclipse project - Java Build Path -> Libraries...
I have a problem: when I run the main class it is running too long time and not doing anything, but javaw.exe in task manager is using 25% of CPU. in my code below the process is printing 3 (main method) and waiting for this => kpg.genKeyPair(), which is not ending;
Can someone explain why is this happening and how to fix it?
package dhcrypto;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PublicKey;
import java.security.Security;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
public class MyMain {
public static void main(String[] args) throws NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException, InvalidKeyException{
Security.addProvider(new BouncyCastleProvider());
System.out.println("1");
KeyPairGenerator kpg = KeyPairGenerator.getInstance("DH","BC");
System.out.println("2");
kpg.initialize(2048);
System.out.println("3");
KeyPair kp = kpg.genKeyPair();
System.out.println("4");
PublicKey userPublicKey = kp.getPublic();
System.out.println("5");
System.out.println("Public Key: "+userPublicKey);
}
}
I got a solution and to understand that you need to have a little knowledge about DH algorithm.
It runs in fraction of seconds now !!!!!!!
Please refer to this stackexchange link : https://security.stackexchange.com/questions/45963/diffie-hellman-key-exchange-in-plain-english
Refer to point "1." in that link, you have to come up with 2 prime numbers, and thats what I did in your program.
Hope this helps you.