/external/boringssl/src/ssl/ |
ssl_cipher.c | 158 static const SSL_CIPHER kCiphers[] = { 630 const SSL_CIPHER *cipher; 641 * |SSL_CIPHER|. A cipher matches a cipher alias iff, for each bitmask, the 723 const SSL_CIPHER *a = in_a; 724 const SSL_CIPHER *b = in_b; 735 static int ssl_cipher_ptr_id_cmp(const SSL_CIPHER **a, const SSL_CIPHER **b) { 739 const SSL_CIPHER *SSL_get_cipher_by_value(uint16_t value) { 740 SSL_CIPHER c; 743 return bsearch(&c, kCiphers, kCiphersLen, sizeof(SSL_CIPHER), [all...] |
CMakeLists.txt | 28 ssl_cipher.c
|
internal.h | 204 * one, update the table in ssl_cipher.c. */ 215 const SSL_CIPHER *cipher, uint16_t version); 229 STACK_OF(SSL_CIPHER) * 232 STACK_OF(SSL_CIPHER) **out_cipher_list_by_id, 236 uint16_t ssl_cipher_get_value(const SSL_CIPHER *cipher); 240 int ssl_cipher_get_key_type(const SSL_CIPHER *cipher); 245 int ssl_cipher_has_server_public_key(const SSL_CIPHER *cipher); 253 int ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher); 258 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher); 266 const SSL_CIPHER *cipher [all...] |
ssl_lib.c | [all...] |
s3_lib.c | 180 int ssl3_supports_cipher(const SSL_CIPHER *cipher) { 472 const SSL_CIPHER *ssl3_choose_cipher( 473 SSL *ssl, STACK_OF(SSL_CIPHER) *clnt, 475 const SSL_CIPHER *c, *ret = NULL; 476 STACK_OF(SSL_CIPHER) *srvr = server_pref->ciphers, *prio, *allow;
|
ssl_aead_ctx.c | 32 uint16_t version, const SSL_CIPHER *cipher,
|
ssl_test.cc | 296 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(list->ciphers, i); 327 const SSL_CIPHER *cipher = 690 const SSL_CIPHER *cipher = SSL_get_cipher_by_value(value); [all...] |
d1_lib.c | 155 int dtls1_supports_cipher(const SSL_CIPHER *cipher) {
|
s3_clnt.c | 601 STACK_OF(SSL_CIPHER) *ciphers = SSL_get_ciphers(ssl); 606 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i); 740 STACK_OF(SSL_CIPHER) *sk; 741 const SSL_CIPHER *c; 937 const SSL_CIPHER *cipher = ssl->s3->tmp.new_cipher; [all...] |
s3_srvr.c | 771 const SSL_CIPHER *c; 772 STACK_OF(SSL_CIPHER) *ciphers = NULL; [all...] |
/external/boringssl/src/tool/ |
ciphers.cc | 44 STACK_OF(SSL_CIPHER) *ciphers = pref_list->ciphers; 49 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i);
|
transport_common.cc | 169 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
|
/external/boringssl/src/include/openssl/ |
stack_macros.h | [all...] |
ssl.h | [all...] |
base.h | 235 typedef struct ssl_cipher_st SSL_CIPHER;
|
stack.h | 168 * CONST_STACK_OF:SSL_CIPHER */
|
/external/curl/packages/vms/ |
curlmsg.msg | 84 SSL_CIPHER <SSL CIPHER, could not use specified cipher>
|
curlmsg.sdl | 88 ,"SSL_CIPHER" EQUALS %X0F0181E2 PREFIX "CURL" TAG ""
|
/external/webrtc/webrtc/base/ |
opensslstreamadapter.cc | 358 const SSL_CIPHER* ssl_cipher = SSL_get_cipher_by_value(cipher_suite); local 359 if (!ssl_cipher) { 362 char* cipher_name = SSL_CIPHER_get_rfc_name(ssl_cipher); 381 const SSL_CIPHER* current_cipher = SSL_get_current_cipher(ssl_); [all...] |
opensslstreamadapter.h | 23 typedef struct ssl_cipher_st SSL_CIPHER;
|
/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/wpa_supplicant_8/src/crypto/ |
tls_openssl.c | [all...] |
/external/boringssl/ |
sources.mk | 306 src/ssl/ssl_cipher.c\
|
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | 330 void operator()(STACK_OF(SSL_CIPHER)* p) const { 331 // We don't own SSL_CIPHER references, so no need for pop_free 335 typedef UniquePtr<STACK_OF(SSL_CIPHER), sk_SSL_CIPHER_Delete> Unique_sk_SSL_CIPHER; 925 static SSL_CIPHER* to_SSL_CIPHER(JNIEnv* env, jlong ssl_cipher_address, bool throwIfNull) { 926 SSL_CIPHER* ssl_cipher local 927 = reinterpret_cast<SSL_CIPHER*>(static_cast<uintptr_t>(ssl_cipher_address)); 928 if ((ssl_cipher == nullptr) && throwIfNull) { 929 JNI_TRACE("ssl_cipher == null"); 930 jniThrowNullPointerException(env, "ssl_cipher == null") [all...] |