void initializeDiffieHellmanGroup(BigInt p, BigInt g, Random random) { dh = DiffieHellman(p, g, 256); dh.generatePair(random); }