OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cipher_list
(Results
1 - 6
of
6
) sorted by null
/external/openssl/ssl/
ssl_lib.c
261
sk=ssl_create_cipher_list(ctx->method,&(ctx->
cipher_list
),
546
if (s->
cipher_list
!= NULL) sk_SSL_CIPHER_free(s->
cipher_list
);
1226
if (s->
cipher_list
!= NULL)
1228
return(s->
cipher_list
);
1231
(s->ctx->
cipher_list
!= NULL))
1233
return(s->ctx->
cipher_list
);
[
all
...]
ssl_ciph.c
[
all
...]
s3_srvr.c
1149
if (s->
cipher_list
)
1150
sk_SSL_CIPHER_free(s->
cipher_list
);
1155
s->
cipher_list
= sk_SSL_CIPHER_dup(s->session->ciphers);
[
all
...]
ssl.h
696
STACK_OF(SSL_CIPHER) *
cipher_list
;
member in struct:ssl_ctx_st
1100
STACK_OF(SSL_CIPHER) *
cipher_list
;
member in struct:ssl_st
[
all
...]
/external/openssl/patches/
jsse.patch
284
+ if (s->
cipher_list
!= NULL)
285
+ sk_SSL_CIPHER_free(s->
cipher_list
);
286
+ s->
cipher_list
= sk;
/external/openssl/include/openssl/
ssl.h
696
STACK_OF(SSL_CIPHER) *
cipher_list
;
member in struct:ssl_ctx_st
1100
STACK_OF(SSL_CIPHER) *
cipher_list
;
member in struct:ssl_st
[
all
...]
Completed in 124 milliseconds