Home
last modified time | relevance | path

Searched refs:cipher_list_by_id (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/ssl/
Dssl_ciph.c1325 static int update_cipher_list_by_id(STACK_OF(SSL_CIPHER) **cipher_list_by_id, in update_cipher_list_by_id() argument
1334 sk_SSL_CIPHER_free(*cipher_list_by_id); in update_cipher_list_by_id()
1335 *cipher_list_by_id = tmp_cipher_list; in update_cipher_list_by_id()
1337 (void)sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id, ssl_cipher_ptr_id_cmp); in update_cipher_list_by_id()
1338 sk_SSL_CIPHER_sort(*cipher_list_by_id); in update_cipher_list_by_id()
1344 STACK_OF(SSL_CIPHER) **cipher_list_by_id, in update_cipher_list()
1367 if (!update_cipher_list_by_id(cipher_list_by_id, tmp_cipher_list)) in update_cipher_list()
1381 return update_cipher_list(&ctx->cipher_list, &ctx->cipher_list_by_id, in SSL_CTX_set_ciphersuites()
1397 return update_cipher_list(&s->cipher_list, &s->cipher_list_by_id, in SSL_set_ciphersuites()
1406 STACK_OF(SSL_CIPHER) **cipher_list_by_id, in STACK_OF()
[all …]
Dssl_lib.c669 &(ctx->cipher_list_by_id), in SSL_CTX_set_ssl_version()
1172 sk_SSL_CIPHER_free(s->cipher_list_by_id); in SSL_free()
2500 if (s->cipher_list_by_id != NULL) { in STACK_OF()
2501 return s->cipher_list_by_id; in STACK_OF()
2502 } else if ((s->ctx != NULL) && (s->ctx->cipher_list_by_id != NULL)) { in STACK_OF()
2503 return s->ctx->cipher_list_by_id; in STACK_OF()
2561 &ctx->cipher_list, &ctx->cipher_list_by_id, str, in SSL_CTX_set_cipher_list()
2585 &s->cipher_list, &s->cipher_list_by_id, str, in SSL_set_cipher_list()
3073 &ret->cipher_list, &ret->cipher_list_by_id, in SSL_CTX_new()
3252 sk_SSL_CIPHER_free(a->cipher_list_by_id); in SSL_CTX_free()
[all …]
Dssl_local.h739 STACK_OF(SSL_CIPHER) *cipher_list_by_id;
1134 STACK_OF(SSL_CIPHER) *cipher_list_by_id;
2272 STACK_OF(SSL_CIPHER) **cipher_list_by_id,
/third_party/openssl/ssl/statem/
Dstatem_srvr.c1968 sk_SSL_CIPHER_free(s->cipher_list_by_id); in tls_early_post_process_client_hello()
1969 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->peer_ciphers); in tls_early_post_process_client_hello()