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

/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DDHCrypt.java63 * . if we are server, call DHCrypt(keyLength,random). This generates
65 * . if we are client, call DHCrypt(modulus, base, random). This
84 final class DHCrypt { class
102 DHCrypt(int keyLength, SecureRandom random) { method in class:DHCrypt
113 DHCrypt(BigInteger modulus, BigInteger base, SecureRandom random) { method in class:DHCrypt
122 private DHCrypt(int keyLength, method in class:DHCrypt
H A DHandshakeMessage.java1100 DH_ServerKeyExchange(DHCrypt obj, ProtocolVersion protocolVersion) {
1104 // The DH key has been validated in the constructor of DHCrypt.
1114 DH_ServerKeyExchange(DHCrypt obj, PrivateKey key, byte[] clntNonce,
1121 // The DH key has been validated in the constructor of DHCrypt.
1286 private void setValues(DHCrypt obj) {
H A DServerHandshaker.java89 private DHCrypt dh;
145 // (see DHCrypt class).
1596 // parameters (see DHCrypt class).
1613 dh = new DHCrypt(keySize, sslContext.getSecureRandom());
H A DClientHandshaker.java76 private DHCrypt dh;
832 dh = new DHCrypt(mesg.getModulus(), mesg.getBase(),

Completed in 52 milliseconds