Home
last modified time | relevance | path

Searched refs:SSL_CIPHER (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-11-stable/crypto/openssl/ssl/
HDssl_locl.h856 OPENSSL_EXTERN const SSL_CIPHER ssl2_ciphers[];
857 OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];
1079 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b);
1080 DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
1081 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
1082 const SSL_CIPHER *const *bp);
1083 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, unsigned char *p,
1085 STACK_OF(SSL_CIPHER) **skp);
1086 int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk,
1088 int (*put_cb) (const SSL_CIPHER *,
[all …]
HDs2_lib.c121 # define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
124 OPENSSL_GLOBAL const SSL_CIPHER ssl2_ciphers[] = {
312 const SSL_CIPHER *ssl2_get_cipher(unsigned int u) in ssl2_get_cipher()
434 const SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p) in ssl2_get_cipher_by_char()
436 SSL_CIPHER c; in ssl2_get_cipher_by_char()
437 const SSL_CIPHER *cp; in ssl2_get_cipher_by_char()
447 int ssl2_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p) in ssl2_put_cipher_by_char()
HDs23_lib.c77 const SSL_CIPHER *ssl23_get_cipher(unsigned int u) in ssl23_get_cipher()
95 const SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p) in ssl23_get_cipher_by_char()
97 const SSL_CIPHER *cp; in ssl23_get_cipher_by_char()
107 int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p) in ssl23_put_cipher_by_char()
HDssl_ciph.c222 const SSL_CIPHER *cipher;
228 static const SSL_CIPHER cipher_aliases[] = {
516 const SSL_CIPHER *c; in ssl_cipher_get_evp()
832 const SSL_CIPHER *c; in ssl_cipher_collect_ciphers()
894 static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, in ssl_cipher_collect_aliases()
904 const SSL_CIPHER **ca_curr; in ssl_cipher_collect_aliases()
956 *ca_curr = (SSL_CIPHER *)(cipher_aliases + i); in ssl_cipher_collect_aliases()
974 const SSL_CIPHER *cp; in ssl_cipher_apply_rule()
1155 const SSL_CIPHER **ca_list) in ssl_cipher_process_rulestr()
1473 STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method, STACK_OF(SSL_CIPHER) in STACK_OF() argument
[all …]
HDssl_lib.c277 STACK_OF(SSL_CIPHER) *sk; in SSL_CTX_set_ssl_version()
1298 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b) in ssl_cipher_id_cmp()
1309 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap, in ssl_cipher_ptr_id_cmp()
1310 const SSL_CIPHER *const *bp) in ssl_cipher_ptr_id_cmp()
1323 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) in STACK_OF() argument
1337 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s) in STACK_OF() argument
1352 SSL_CIPHER *c; in SSL_get_cipher_list()
1353 STACK_OF(SSL_CIPHER) *sk; in SSL_get_cipher_list()
1369 STACK_OF(SSL_CIPHER) *sk; in SSL_CTX_set_cipher_list()
1392 STACK_OF(SSL_CIPHER) *sk; in SSL_set_cipher_list()
[all …]
HDssl.h375 typedef struct ssl_cipher_st SSL_CIPHER; typedef
380 DECLARE_STACK_OF(SSL_CIPHER)
395 STACK_OF(SSL_CIPHER) *peer_ciphers,
396 SSL_CIPHER **cipher, void *arg);
459 const SSL_CIPHER *(*get_cipher_by_char) (const unsigned char *ptr);
460 int (*put_cipher_by_char) (const SSL_CIPHER *cipher, unsigned char *ptr);
463 const SSL_CIPHER *(*get_cipher) (unsigned ncipher);
548 const SSL_CIPHER *cipher;
551 STACK_OF(SSL_CIPHER) *ciphers; /* ciphers offered by the client */
927 STACK_OF(SSL_CIPHER) *cipher_list;
[all …]
HDs3_lib.c162 #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER))
165 OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[] = {
3022 const SSL_CIPHER *ssl3_get_cipher(unsigned int u) in ssl3_get_cipher()
3483 const SSL_CIPHER *cipher; in ssl3_ctrl()
4091 const SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p) in ssl3_get_cipher_by_char()
4093 SSL_CIPHER c; in ssl3_get_cipher_by_char()
4094 const SSL_CIPHER *cp; in ssl3_get_cipher_by_char()
4107 int ssl3_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p) in ssl3_put_cipher_by_char()
4121 SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, in ssl3_choose_cipher()
4122 STACK_OF(SSL_CIPHER) *srvr) in ssl3_choose_cipher()
[all …]
HDs2_srvr.c379 const SSL_CIPHER *cp; in get_client_master_key()
562 STACK_OF(SSL_CIPHER) *cs; /* a stack of SSL_CIPHERS */ in get_client_hello()
563 STACK_OF(SSL_CIPHER) *cl; /* the ones we want to use */ in get_client_hello()
564 STACK_OF(SSL_CIPHER) *prio, *allow; in get_client_hello()
695 const SSL_CIPHER *cp = sk_SSL_CIPHER_value(prio, z); in get_client_hello()
HDd1_lib.c363 const SSL_CIPHER *dtls1_get_cipher(unsigned int u) in dtls1_get_cipher()
365 const SSL_CIPHER *ciph = ssl3_get_cipher(u); in dtls1_get_cipher()
HDs23_clnt.c266 SSL_CIPHER *cipher; in ssl23_no_ssl2_ciphers()
267 STACK_OF(SSL_CIPHER) *ciphers; in ssl23_no_ssl2_ciphers()
HDssl3.h564 const SSL_CIPHER *new_cipher;
HDs3_srvr.c918 SSL_CIPHER *c; in ssl3_get_client_hello()
923 STACK_OF(SSL_CIPHER) *ciphers = NULL; in ssl3_get_client_hello()
1269 SSL_CIPHER *pref_cipher = NULL; in ssl3_get_client_hello()
1434 STACK_OF(SSL_CIPHER) *sk; in ssl3_get_client_hello()
1435 SSL_CIPHER *nc = NULL; in ssl3_get_client_hello()
1436 SSL_CIPHER *ec = NULL; in ssl3_get_client_hello()
HDssl_sess.c1039 STACK_OF(SSL_CIPHER) in SSL_set_session_secret_cb()
1041 SSL_CIPHER in SSL_set_session_secret_cb()
HDt1_trce.c1193 const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c) in SSL_CIPHER_standard_name()
HDs3_clnt.c900 STACK_OF(SSL_CIPHER) *sk; in ssl3_get_server_hello()
901 const SSL_CIPHER *c; in ssl3_get_server_hello()
1007 SSL_CIPHER *pref_cipher = NULL; in ssl3_get_server_hello()
HDs2_clnt.c340 STACK_OF(SSL_CIPHER) *sk = NULL, *cl, *prio, *allow; in get_server_hello()
/freebsd-11-stable/crypto/openssl/doc/ssl/
HDSSL_get_current_cipher.pod6 SSL_get_cipher_bits, SSL_get_cipher_version - get SSL_CIPHER of a connection
12 SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
24 SSL_get_current_cipher() returns a pointer to an SSL_CIPHER object containing
HDSSL_CIPHER_get_name.pod5 …me, SSL_CIPHER_get_bits, SSL_CIPHER_get_version, SSL_CIPHER_description - get SSL_CIPHER properties
11 const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher);
12 int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, int *alg_bits);
13 char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher);
14 char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int size);
HDSSL_get_ciphers.pod14 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl);
24 SSL_get_cipher_list() returns a pointer to the name of the SSL_CIPHER
30 SSL_CIPHER names that are available in both the client and the server. B<buf> is
HDssl.pod51 =item B<SSL_CIPHER> (SSL Cipher)
67 connection: B<SSL_CIPHER>s, client and server certificates, keys, etc.
219 ciphers defined in B<SSL_CIPHER> structures.
223 =item char *B<SSL_CIPHER_description>(SSL_CIPHER *cipher, char *buf, int len);
228 =item int B<SSL_CIPHER_get_bits>(SSL_CIPHER *cipher, int *alg_bits);
234 =item const char *B<SSL_CIPHER_get_name>(SSL_CIPHER *cipher);
240 =item char *B<SSL_CIPHER_get_version>(SSL_CIPHER *cipher);
545 =item SSL_CIPHER *B<SSL_get_current_cipher>(SSL *ssl);
/freebsd-11-stable/crypto/openssl/apps/
HDciphers.c98 STACK_OF(SSL_CIPHER) *sk; in MAIN()
187 SSL_CIPHER *c; in MAIN()
HDs_cb.c1455 const SSL_CIPHER *c = SSL_CIPHER_find(s, rlist); in print_raw_cipherlist()
1474 const SSL_CIPHER *c; in print_ssl_summary()
/freebsd-11-stable/crypto/openssl/crypto/stack/
HDsafestack.h1600 # define sk_SSL_CIPHER_new(cmp) SKM_sk_new(SSL_CIPHER, (cmp))
1601 # define sk_SSL_CIPHER_new_null() SKM_sk_new_null(SSL_CIPHER)
1602 # define sk_SSL_CIPHER_free(st) SKM_sk_free(SSL_CIPHER, (st))
1603 # define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st))
1604 # define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i))
1605 # define sk_SSL_CIPHER_set(st, i, val) SKM_sk_set(SSL_CIPHER, (st), (i), (val))
1606 # define sk_SSL_CIPHER_zero(st) SKM_sk_zero(SSL_CIPHER, (st))
1607 # define sk_SSL_CIPHER_push(st, val) SKM_sk_push(SSL_CIPHER, (st), (val))
1608 # define sk_SSL_CIPHER_unshift(st, val) SKM_sk_unshift(SSL_CIPHER, (st), (val))
1609 # define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val))
[all …]
/freebsd-11-stable/contrib/wpa/src/crypto/
HDtls_openssl.c4010 const SSL_CIPHER *ssl_cipher; in openssl_get_keyblock_size()
5334 STACK_OF(SSL_CIPHER) *peer_ciphers, in tls_sess_sec_cb()
5335 const SSL_CIPHER **cipher, void *arg) in tls_sess_sec_cb()
5338 STACK_OF(SSL_CIPHER) *peer_ciphers, in tls_sess_sec_cb()
5339 SSL_CIPHER **cipher, void *arg) in tls_sess_sec_cb()
5540 const SSL_CIPHER *cipher; in tls_connection_get_cipher_suite()
/freebsd-11-stable/crypto/openssl/util/
HDindent.pro462 -T SSL_CIPHER

12