/external/conscrypt/src/main/java/org/conscrypt/ |
NativeCrypto.java | [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
eap_pwd_common.c | 310 const u32 *ciphersuite, u8 *msk, u8 *emsk, u8 *session_id) 321 * first compute the session-id = TypeCode | H(ciphersuite | scal_p | 330 eap_pwd_h_update(hash, (const u8 *) ciphersuite, sizeof(u32));
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLSocketTest.java | 80 import libcore.tlswire.handshake.CipherSuite; 142 for (String cipherSuite : cipherSuites) { 143 boolean errorExpected = StandardNames.IS_RI && cipherSuite.endsWith("_SHA256"); 150 if (cipherSuite.equals(StandardNames.CIPHER_SUITE_SECURE_RENEGOTIATION)) { 158 if (cipherSuite.equals(StandardNames.CIPHER_SUITE_FALLBACK)) { 166 if (cipherSuite.startsWith("TLS_KRB5_")) { 171 cipherSuite, 211 String message = ("Problem trying to connect cipher suite " + cipherSuite); 537 String cipherSuite = event.getCipherSuite(); 548 System.out.println("CipherSuite=" + cipherSuite) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Protocol.java | 65 * {@linkplain com.squareup.okhttp.CipherSuite#TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}
|
CipherSuite.java | 32 public enum CipherSuite { [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
RecordedResponse.java | 90 assertNotNull(handshake.cipherSuite());
|
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/ |
okhttp-2.5.0-sources.jar | |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
HttpsURLConnectionTest.java | 67 assertEquals("CipherSuite", con.getCipherSuite()); 258 return "CipherSuite";
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
MAC.java | 37 import sun.security.ssl.CipherSuite.MacAlg; 38 import static sun.security.ssl.CipherSuite.*;
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_messages_test.go | 157 m.cipherSuite = uint16(rand.Int31()) 254 s.cipherSuite = uint16(rand.Intn(10000))
|
handshake_client.go | 25 suite *cipherSuite 110 // Check that the ciphersuite/version used for the 114 if id == candidateSession.cipherSuite { 161 suite := mutualCipherSuite(c.config.cipherSuites(), serverHello.cipherSuite) 229 c.cipherSuite = suite.id 605 cipherSuite: hs.suite.id,
|
handshake_server_test.go | 276 if s := serverHello.cipherSuite; s != TLS_RSA_WITH_RC4_128_SHA { 357 if state.CipherSuite != TLS_RSA_WITH_AES_128_CBC_SHA { 359 t.Fatalf("Client's preference was not used, got %x", state.CipherSuite) 367 if state.CipherSuite != TLS_RSA_WITH_RC4_128_SHA { 368 t.Fatalf("Server's preference was not used, got %x", state.CipherSuite) 829 // TestCipherSuiteCertPreferance ensures that we select an RSA ciphersuite with 830 // an RSA certificate and an ECDSA ciphersuite with an ECDSA certificate. [all...] |
common.go | 161 CipherSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...) 196 cipherSuite uint16 // Ciphersuite negotiated for the session 313 // client's most preferred ciphersuite, or the server's most preferred 314 // ciphersuite. If true then the server's preference, as expressed in
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
handshake_messages_test.go | 157 m.cipherSuite = uint16(rand.Int31()) 254 s.cipherSuite = uint16(rand.Intn(10000))
|
handshake_client.go | 25 suite *cipherSuite 110 // Check that the ciphersuite/version used for the 114 if id == candidateSession.cipherSuite { 161 suite := mutualCipherSuite(c.config.cipherSuites(), serverHello.cipherSuite) 229 c.cipherSuite = suite.id 605 cipherSuite: hs.suite.id,
|
handshake_server_test.go | 276 if s := serverHello.cipherSuite; s != TLS_RSA_WITH_RC4_128_SHA { 357 if state.CipherSuite != TLS_RSA_WITH_AES_128_CBC_SHA { 359 t.Fatalf("Client's preference was not used, got %x", state.CipherSuite) 367 if state.CipherSuite != TLS_RSA_WITH_RC4_128_SHA { 368 t.Fatalf("Server's preference was not used, got %x", state.CipherSuite) 829 // TestCipherSuiteCertPreferance ensures that we select an RSA ciphersuite with 830 // an RSA certificate and an ECDSA ciphersuite with an ECDSA certificate. [all...] |
common.go | 161 CipherSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...) 196 cipherSuite uint16 // Ciphersuite negotiated for the session 313 // client's most preferred ciphersuite, or the server's most preferred 314 // ciphersuite. If true then the server's preference, as expressed in
|
/external/boringssl/src/ssl/test/runner/ |
handshake_client.go | 27 suite *cipherSuite 160 // Check that the ciphersuite/version used for the 164 if id == candidateSession.cipherSuite { 275 suite := mutualCipherSuite(c.config.cipherSuites(), serverHello.cipherSuite) 371 c.cipherSuite = suite 749 if c.cipherSuite != nil && c.config.Bugs.FailIfResumeOnRenego { 817 cipherSuite: hs.suite.id,
|
common.go | 184 CipherSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...) 216 cipherSuite uint16 // Ciphersuite negotiated for the session 318 // client's most preferred ciphersuite, or the server's most preferred 319 // ciphersuite. If true then the server's preference, as expressed in [all...] |
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
DigitalSignatureTest.java | 119 // CipherSuite.KeyExchange_RSA_EXPORT == 2
|
/external/jetty/src/java/org/eclipse/jetty/server/ssl/ |
SslConnector.java | 66 * @return The array of Ciphersuite names to exclude from 75 * @param cipherSuites The array of Ciphersuite names to exclude from 84 * @return The array of Ciphersuite names to include in 93 * @param cipherSuites The array of Ciphersuite names to include in
|
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/ |
DelegatingHttpsURLConnection.java | 60 return handshake != null ? handshake.cipherSuite() : null;
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_common.h | 49 /* CipherSuite */
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap_pwd.c | 594 * first build up the ciphersuite which is group | random_function | 615 * peer_element | peer_scalar | ciphersuite) 679 /* the ciphersuite */ 696 * ciphersuite) 756 /* the ciphersuite */
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_pwd.c | 332 * peer_scalar | ciphersuite) 399 /* ciphersuite */ 801 /* build up the ciphersuite: group | random_function | prf */ 819 * server_scalar | ciphersuite) 880 /* ciphersuite */
|