I am trying to implement the Diffie Hellman key exchange protocol. For the moment I am stuck at the public parameters generation.
Every time I run the program, p and g parameters are the same (although the method documentation says "This will generate a new key pair every time it is called.").
Could please someone explain to me what am I missing here?
KeyPairGenerator kpg;
try
{
kpg = KeyPairGenerator.getInstance("DiffieHellman");
kpg.initialize(512, new SecureRandom());
KeyPair dkp = kpg.generateKeyPair();
DHParameterSpec params =
((javax.crypto.interfaces.DHPublicKey) dkp.getPublic()).getParams();
BigInteger p = params.getP();
BigInteger a = params.getG();
System.out.println(p);
} catch (Exception e)
{
e.printStackTrace();
}
You aren't explicitly initializing the
p
andg
values for the Diffie-Hellman exchange, and so they're being initialized to default values. Note that these values are public and have to be shared between the two sides in order for the exchange to work correctly. I ran into a dead end after the third SPI in the Sun JCE, but since you're not setting the parameters yourself, the code is retrieving the same defaultp
andg
that are used for DSA and applying them to DH.From the Javadoc:
The documentation for the Sun implementation lists the following values for 512-bit keys: