/external/openssl/ssl/ |
d1_lib.c | 290 * there is no universal way to identify stream SSL_CIPHER, so we have 294 const SSL_CIPHER *dtls1_get_cipher(unsigned int u) 296 const SSL_CIPHER *ciph = ssl3_get_cipher(u);
|
s3_lib.c | 167 #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER)) 170 OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ [all...] |
s2_srvr.c | 369 const SSL_CIPHER *cp; 526 STACK_OF(SSL_CIPHER) *cs; /* a stack of SSL_CIPHERS */ 527 STACK_OF(SSL_CIPHER) *cl; /* the ones we want to use */ 528 STACK_OF(SSL_CIPHER) *prio, *allow;
|
ssl2.h | 122 /* Flags for the SSL_CIPHER.algorithm2 field */
|
s23_clnt.c | 259 SSL_CIPHER *cipher; 260 STACK_OF(SSL_CIPHER) *ciphers;
|
/external/chromium_org/third_party/openssl/openssl/crypto/stack/ |
safestack.h | [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
safestack.h | [all...] |
ssl2.h | 122 /* Flags for the SSL_CIPHER.algorithm2 field */
|
/external/openssl/crypto/stack/ |
safestack.h | [all...] |
/external/openssl/include/openssl/ |
safestack.h | [all...] |
ssl2.h | 122 /* Flags for the SSL_CIPHER.algorithm2 field */
|
/external/chromium_org/third_party/openssl/openssl/patches/ |
channelid.patch | 620 @@ -1686,6 +1725,7 @@ int SSL_CIPHER_get_bits(const SSL_CIPHER 621 char * SSL_CIPHER_get_version(const SSL_CIPHER *c); 622 const char * SSL_CIPHER_get_name(const SSL_CIPHER *c); 623 unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c); 624 +const char* SSL_CIPHER_authentication_method(const SSL_CIPHER* cipher); [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
s2_srvr.c | 369 const SSL_CIPHER *cp; 526 STACK_OF(SSL_CIPHER) *cs; /* a stack of SSL_CIPHERS */ 527 STACK_OF(SSL_CIPHER) *cl; /* the ones we want to use */ 528 STACK_OF(SSL_CIPHER) *prio, *allow;
|
ssl2.h | 122 /* Flags for the SSL_CIPHER.algorithm2 field */
|
s23_clnt.c | 259 SSL_CIPHER *cipher; 260 STACK_OF(SSL_CIPHER) *ciphers;
|
ssl_sess.c | 915 STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg), void *arg) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/external/chromium_org/net/socket/ |
ssl_client_socket_openssl.cc | 56 unsigned long SSL_CIPHER_get_id(const SSL_CIPHER* cipher) { return cipher->id; } 569 const SSL_CIPHER* cipher = SSL_get_current_cipher(ssl_); 712 STACK_OF(SSL_CIPHER)* ciphers = SSL_get_ciphers(ssl_); 723 const SSL_CIPHER* cipher = sk_SSL_CIPHER_value(ciphers, i); [all...] |
/external/openssl/patches/ |
0011-ecdhe_psk.patch | 548 @@ -2827,6 +2827,42 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ 591 @@ -3979,7 +3999,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, [all...] |
0002-handshake_cutthrough.patch | 249 + const SSL_CIPHER *c;
|
0007-tls12_digests.patch | 141 @@ -2345,32 +2345,41 @@ EVP_PKEY *ssl_get_sign_pkey(SSL *s,const SSL_CIPHER *cipher, const EVP_MD **pmd)
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
s_time.c | 385 tm_cipher = getenv("SSL_CIPHER");
|
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | 308 void operator()(STACK_OF(SSL_CIPHER)* p) const { 309 // We don't own SSL_CIPHER references, so no need for pop_free 313 typedef UniquePtr<STACK_OF(SSL_CIPHER), sk_SSL_CIPHER_Delete> Unique_sk_SSL_CIPHER; 742 static SSL_CIPHER* to_SSL_CIPHER(JNIEnv* env, jlong ssl_cipher_address, bool throwIfNull) { 743 SSL_CIPHER* ssl_cipher local 744 = reinterpret_cast<SSL_CIPHER*>(static_cast<uintptr_t>(ssl_cipher_address)); 745 if ((ssl_cipher == NULL) && throwIfNull) { 746 JNI_TRACE("ssl_cipher == null"); 747 jniThrowNullPointerException(env, "ssl_cipher == null") [all...] |
/external/openssl/apps/ |
s_time.c | 385 tm_cipher = getenv("SSL_CIPHER");
|