Searched refs:DHCrypt (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DDHCrypt.java57 * . if we are server, call DHCrypt(keyLength,random). This generates
59 * . if we are client, call DHCrypt(modulus, base, random). This
78 final class DHCrypt { class
96 DHCrypt(int keyLength, SecureRandom random) { method in class:DHCrypt
121 DHCrypt(BigInteger modulus, BigInteger base, SecureRandom random) { method in class:DHCrypt
H A DHandshakeMessage.java703 DH_ServerKeyExchange(DHCrypt obj, ProtocolVersion protocolVersion) {
707 // The DH key has been validated in the constructor of DHCrypt.
717 DH_ServerKeyExchange(DHCrypt obj, PrivateKey key, byte clntNonce[],
724 // The DH key has been validated in the constructor of DHCrypt.
884 private void setValues(DHCrypt obj) {
H A DClientHandshaker.java73 private DHCrypt dh;
621 dh = new DHCrypt(mesg.getModulus(), mesg.getBase(),
H A DServerHandshaker.java83 private DHCrypt dh;
1182 dh = new DHCrypt((export ? 512 : 768), sslContext.getSecureRandom());

Completed in 101 milliseconds