HomeSort by relevance Sort by last modified time
    Searched refs:clientRandom (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionStateSSLv3.java 87 byte[] clientRandom = session.clientRandom;
92 byte[] seed = new byte[clientRandom.length + serverRandom.length];
94 System.arraycopy(clientRandom, 0, seed, serverRandom.length,
95 clientRandom.length);
123 md5.update(clientRandom);
129 md5.update(clientRandom);
135 md5.update(clientRandom);
139 md5.update(clientRandom);
154 logger.print(clientRandom);
    [all...]
ConnectionStateTLS.java 109 byte[] clientRandom = session.clientRandom;
114 byte[] seed = new byte[clientRandom.length + serverRandom.length];
116 System.arraycopy(clientRandom, 0, seed, serverRandom.length,
117 clientRandom.length);
140 System.arraycopy(clientRandom, 0,
141 seed, 0, clientRandom.length);
143 seed, clientRandom.length, serverRandom.length);
172 logger.print(clientRandom);
SSLSessionImpl.java 53 byte[] clientRandom;
ClientHandshakeImpl.java 137 session.clientRandom = clientHello.random;
ServerHandshakeImpl.java 417 session.clientRandom = clientHello.random;

Completed in 58 milliseconds