• Home
  • Raw
  • Download

Lines Matching refs:ciphers

925 	STACK_OF(SSL_CIPHER) *ciphers=NULL;  in ssl3_get_client_hello()
1103 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers)) in ssl3_get_client_hello()
1117 printf("client sent %d ciphers\n",sk_num(ciphers)); in ssl3_get_client_hello()
1119 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++) in ssl3_get_client_hello()
1121 c=sk_SSL_CIPHER_value(ciphers,i); in ssl3_get_client_hello()
1124 i,sk_num(ciphers),SSL_CIPHER_get_name(c)); in ssl3_get_client_hello()
1136 …= 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1)) in ssl3_get_client_hello()
1143 c = sk_SSL_CIPHER_value(ciphers, 0); in ssl3_get_client_hello()
1224 ciphers, &pref_cipher, s->tls_session_secret_cb_arg)) in ssl3_get_client_hello()
1227 s->session->ciphers=ciphers; in ssl3_get_client_hello()
1230 ciphers=NULL; in ssl3_get_client_hello()
1233 …pref_cipher=pref_cipher ? pref_cipher : ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers… in ssl3_get_client_hello()
1249 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers); in ssl3_get_client_hello()
1250 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers); in ssl3_get_client_hello()
1349 if (s->session->ciphers != NULL) in ssl3_get_client_hello()
1350 sk_SSL_CIPHER_free(s->session->ciphers); in ssl3_get_client_hello()
1351 s->session->ciphers=ciphers; in ssl3_get_client_hello()
1352 if (ciphers == NULL) in ssl3_get_client_hello()
1358 ciphers=NULL; in ssl3_get_client_hello()
1359 c=ssl3_choose_cipher(s,s->session->ciphers, in ssl3_get_client_hello()
1380 sk=s->session->ciphers; in ssl3_get_client_hello()
1425 if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers); in ssl3_get_client_hello()