Searched refs:clientRandom (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsMasterSecretParameterSpec.java50 private final byte[] clientRandom, serverRandom; field in class:TlsMasterSecretParameterSpec
65 * @param clientRandom the client's random value
74 * @throws NullPointerException if premasterSecret, clientRandom,
81 byte[] clientRandom, byte[] serverRandom,
89 this.clientRandom = clientRandom.clone();
137 return clientRandom.clone();
79 TlsMasterSecretParameterSpec(SecretKey premasterSecret, int majorVersion, int minorVersion, byte[] clientRandom, byte[] serverRandom, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
H A DTlsKeyMaterialParameterSpec.java50 private final byte[] clientRandom, serverRandom; field in class:TlsKeyMaterialParameterSpec
64 * @param clientRandom the client's random value
85 * @throws NullPointerException if masterSecret, clientRandom,
93 int majorVersion, int minorVersion, byte[] clientRandom,
108 this.clientRandom = clientRandom.clone();
160 return clientRandom.clone();
92 TlsKeyMaterialParameterSpec(SecretKey masterSecret, int majorVersion, int minorVersion, byte[] clientRandom, byte[] serverRandom, String cipherAlgorithm, int cipherKeyLength, int expandedCipherKeyLength, int ivLength, int macKeyLength, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_SSL3_RANDOM_DATA.java90 public CK_SSL3_RANDOM_DATA(byte[] clientRandom, byte[] serverRandom) { argument
91 pClientRandom = clientRandom;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsKeyMaterialGenerator.java98 byte[] clientRandom = spec.getClientRandom();
126 byte[] seed = concat(serverRandom, clientRandom);
134 byte[] seed = concat(serverRandom, clientRandom);
151 sha.update(clientRandom);
222 byte[] seed = concat(clientRandom, serverRandom);
246 md5.update(clientRandom);
253 md5.update(clientRandom);
260 md5.update(clientRandom);
266 md5.update(clientRandom);
H A DTlsMasterSecretGenerator.java103 byte[] clientRandom = spec.getClientRandom();
107 byte[] seed = concat(clientRandom, serverRandom);
122 sha.update(clientRandom);
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestMasterSecret.java60 byte[] clientRandom = null;
83 clientRandom = parse(data);
106 protoMinor, clientRandom, serverRandom,
H A DTestKeyMaterial.java60 byte[] clientRandom = null;
91 clientRandom = parse(data);
126 clientRandom, serverRandom, cipherAlgorithm,
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestMasterSecret.java67 byte[] clientRandom = null;
90 clientRandom = parse(data);
113 protoMajor, protoMinor, clientRandom, serverRandom,
H A DTestKeyMaterial.java68 byte[] clientRandom = null;
99 clientRandom = parse(data);
134 clientRandom, serverRandom, cipherAlgorithm,
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11TlsMasterSecretGenerator.java125 byte[] clientRandom = spec.getClientRandom();
128 new CK_SSL3_RANDOM_DATA(clientRandom, serverRandom);

Completed in 2407 milliseconds