Home
last modified time | relevance | path

Searched refs:clientHello (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dhandshake_server.go28 clientHello *clientHelloMsg member
131 copy(c.clientRandom[:], hs.clientHello.random)
151 hs.clientHello, ok = msg.(*clientHelloMsg)
154 return unexpectedMessageError(hs.clientHello, msg)
156 if size := config.Bugs.RequireClientHelloSize; size != 0 && len(hs.clientHello.raw) != size {
157 …return fmt.Errorf("tls: ClientHello record size is %d, but expected %d", len(hs.clientHello.raw), …
184 return unexpectedMessageError(hs.clientHello, msg)
193 oldClientHelloCopy := *hs.clientHello
202 hs.clientHello = newClientHello
206 if c.clientVersion != hs.clientHello.vers {
[all …]
Dkey_agreement.go40 func (ka *rsaKeyAgreement) generateServerKeyExchange(config *Config, cert *Certificate, clientHello
42 ka.clientVersion = clientHello.vers
66 …sigAlg, err = selectSignatureAlgorithm(ka.version, cert.PrivateKey, config, clientHello.signatureA…
135 func (ka *rsaKeyAgreement) processServerKeyExchange(config *Config, clientHello *clientHelloMsg, se…
139 func (ka *rsaKeyAgreement) generateClientKeyExchange(config *Config, clientHello *clientHelloMsg, c…
142 vers := clientHello.vers
305 …signParameters(config *Config, cert *Certificate, clientHello *clientHelloMsg, hello *serverHelloM…
306 …verifyParameters(config *Config, clientHello *clientHelloMsg, serverHello *serverHelloMsg, cert *x…
313 …ementAuthentication) signParameters(config *Config, cert *Certificate, clientHello *clientHelloMsg…
319 func (ka *nilKeyAgreementAuthentication) verifyParameters(config *Config, clientHello *clientHelloM…
[all …]
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
DSSLSocketTest.java1832 ClientHello clientHello = captureTlsHandshakeClientHello(sslSocketFactory); in test_SSLSocket_ClientHello_cipherSuites()
1838 clientHello.findExtensionByType(HelloExtension.TYPE_RENEGOTIATION_INFO); in test_SSLSocket_ClientHello_cipherSuites()
1841 cipherSuites = new String[clientHello.cipherSuites.size() + 1]; in test_SSLSocket_ClientHello_cipherSuites()
1842 cipherSuites[clientHello.cipherSuites.size()] = in test_SSLSocket_ClientHello_cipherSuites()
1845 cipherSuites = new String[clientHello.cipherSuites.size()]; in test_SSLSocket_ClientHello_cipherSuites()
1847 for (int i = 0; i < clientHello.cipherSuites.size(); i++) { in test_SSLSocket_ClientHello_cipherSuites()
1848 CipherSuite cipherSuite = clientHello.cipherSuites.get(i); in test_SSLSocket_ClientHello_cipherSuites()
1858 ClientHello clientHello = captureTlsHandshakeClientHello(sslSocketFactory); in test_SSLSocket_ClientHello_supportedCurves()
1860 (EllipticCurvesHelloExtension) clientHello.findExtensionByType( in test_SSLSocket_ClientHello_supportedCurves()
1880 ClientHello clientHello = captureTlsHandshakeClientHello(sslSocketFactory); in test_SSLSocket_ClientHello_clientProtocolVersion()
[all …]