/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 7146728
* @summary DHKeyAgreement2
* @author Jan Luehe
*/
/**
* This test utility executes the Diffie-Hellman key agreement protocol
* between 2 parties: Alice and Bob.
*
* By default, preconfigured parameters (1024 bit prime modulus and base
* generator used by SKIP) are used.
* If this program is called with the "-gen" option, a new set of parameters
* are created.
*/
public class DHKeyAgreement2 {
private DHKeyAgreement2() {}
throw new Exception("Wrong number of command options");
}
mode = "GENERATE_DH_PARAMS";
}
}
// Some central authority creates new DH parameters
(DHParameterSpec.class);
} else {
// use some pre-generated, default DH parameters
}
/*
* Alice creates her own DH key pair, using the DH parameters from
* above
*/
// Alice executes Phase1 of her version of the DH protocol
// Alice encodes her public key, and sends it over to Bob.
/*
* Let's turn over to Bob. Bob has received Alice's public key
* in encoded format.
* He instantiates a DH public key from the encoded key material.
*/
/*
* Bob gets the DH parameters associated with Alice's public key.
* He must use the same parameters when he generates his own key
* pair.
*/
// Bob creates his own DH key pair
// Bob executes Phase1 of his version of the DH protocol
// Bob encodes his public key, and sends it over to Alice.
/*
* Alice uses Bob's public key for Phase2 of her version of the DH
* protocol.
* Before she can do so, she has to instanticate a DH public key
* from Bob's encoded key material.
*/
/*
* Bob uses Alice's public key for Phase2 of his version of the DH
* protocol.
*/
/*
* At this stage, both Alice and Bob have completed the DH key
* agreement protocol.
* Each generates the (same) shared secret.
*/
// check if alice's key agreement has been reset afterwards
try {
throw new Exception("Error: alice's KeyAgreement not reset");
} catch (IllegalStateException e) {
}
byte[] bobSharedSecret = new byte[aliceLen];
int bobLen;
try {
// provide output buffer that is too short
} catch (ShortBufferException e) {
}
// retry w/ output buffer of required size
// check if bob's key agreement has been reset afterwards
try {
throw new Exception("Error: bob's KeyAgreement not reset");
} catch (IllegalStateException e) {
}
throw new Exception("Shared secrets have different lengths");
}
for (int i=0; i<aliceLen; i++) {
if (aliceSharedSecret[i] != bobSharedSecret[i]) {
throw new Exception("Shared secrets differ");
}
}
// Now let's return the shared secret as a SecretKey object
// and use it for encryption
throw new Exception("DIFFERENT");
}
for (int i=0; i < clear1Len; i++) {
if (cleartext[i] != cleartext1[i]) {
throw new Exception("DIFFERENT");
}
}
}
/*
* Converts a byte to hex digit and writes to the supplied buffer
*/
'9', 'A', 'B', 'C', 'D', 'E', 'F' };
int low = (b & 0x0f);
}
/*
* Converts a byte array to hex string
*/
for (int i = 0; i < len; i++) {
if (i < len-1) {
}
}
}
/*
* Prints the usage of this test.
*/
private void usage() {
}
// The 1024 bit Diffie-Hellman modulus values used by SKIP
private static final byte skip1024ModulusBytes[] = {
(byte)0xF4, (byte)0x88, (byte)0xFD, (byte)0x58,
(byte)0x4E, (byte)0x49, (byte)0xDB, (byte)0xCD,
(byte)0x20, (byte)0xB4, (byte)0x9D, (byte)0xE4,
(byte)0x91, (byte)0x07, (byte)0x36, (byte)0x6B,
(byte)0x33, (byte)0x6C, (byte)0x38, (byte)0x0D,
(byte)0x45, (byte)0x1D, (byte)0x0F, (byte)0x7C,
(byte)0x88, (byte)0xB3, (byte)0x1C, (byte)0x7C,
(byte)0x5B, (byte)0x2D, (byte)0x8E, (byte)0xF6,
(byte)0xF3, (byte)0xC9, (byte)0x23, (byte)0xC0,
(byte)0x43, (byte)0xF0, (byte)0xA5, (byte)0x5B,
(byte)0x18, (byte)0x8D, (byte)0x8E, (byte)0xBB,
(byte)0x55, (byte)0x8C, (byte)0xB8, (byte)0x5D,
(byte)0x38, (byte)0xD3, (byte)0x34, (byte)0xFD,
(byte)0x7C, (byte)0x17, (byte)0x57, (byte)0x43,
(byte)0xA3, (byte)0x1D, (byte)0x18, (byte)0x6C,
(byte)0xDE, (byte)0x33, (byte)0x21, (byte)0x2C,
(byte)0xB5, (byte)0x2A, (byte)0xFF, (byte)0x3C,
(byte)0xE1, (byte)0xB1, (byte)0x29, (byte)0x40,
(byte)0x18, (byte)0x11, (byte)0x8D, (byte)0x7C,
(byte)0x84, (byte)0xA7, (byte)0x0A, (byte)0x72,
(byte)0xD6, (byte)0x86, (byte)0xC4, (byte)0x03,
(byte)0x19, (byte)0xC8, (byte)0x07, (byte)0x29,
(byte)0x7A, (byte)0xCA, (byte)0x95, (byte)0x0C,
(byte)0xD9, (byte)0x96, (byte)0x9F, (byte)0xAB,
(byte)0xD0, (byte)0x0A, (byte)0x50, (byte)0x9B,
(byte)0x02, (byte)0x46, (byte)0xD3, (byte)0x08,
(byte)0x3D, (byte)0x66, (byte)0xA4, (byte)0x5D,
(byte)0x41, (byte)0x9F, (byte)0x9C, (byte)0x7C,
(byte)0xBD, (byte)0x89, (byte)0x4B, (byte)0x22,
(byte)0x19, (byte)0x26, (byte)0xBA, (byte)0xAB,
(byte)0xA2, (byte)0x5E, (byte)0xC3, (byte)0x55,
(byte)0xE9, (byte)0x2F, (byte)0x78, (byte)0xC7
};
// The SKIP 1024 bit modulus
// The base used with the SKIP 1024 bit modulus
}