| /freebsd-11-stable/crypto/openssl/ssl/ |
| HD | ssl_locl.h | 856 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 …]
|
| HD | s2_lib.c | 121 # 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()
|
| HD | s23_lib.c | 77 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()
|
| HD | ssl_ciph.c | 222 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 …]
|
| HD | ssl_lib.c | 277 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 …]
|
| HD | ssl.h | 375 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 …]
|
| HD | s3_lib.c | 162 #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 …]
|
| HD | s2_srvr.c | 379 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()
|
| HD | d1_lib.c | 363 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()
|
| HD | s23_clnt.c | 266 SSL_CIPHER *cipher; in ssl23_no_ssl2_ciphers() 267 STACK_OF(SSL_CIPHER) *ciphers; in ssl23_no_ssl2_ciphers()
|
| HD | ssl3.h | 564 const SSL_CIPHER *new_cipher;
|
| HD | s3_srvr.c | 918 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()
|
| HD | ssl_sess.c | 1039 STACK_OF(SSL_CIPHER) in SSL_set_session_secret_cb() 1041 SSL_CIPHER in SSL_set_session_secret_cb()
|
| HD | t1_trce.c | 1193 const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c) in SSL_CIPHER_standard_name()
|
| HD | s3_clnt.c | 900 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()
|
| HD | s2_clnt.c | 340 STACK_OF(SSL_CIPHER) *sk = NULL, *cl, *prio, *allow; in get_server_hello()
|
| /freebsd-11-stable/crypto/openssl/doc/ssl/ |
| HD | SSL_get_current_cipher.pod | 6 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
|
| HD | SSL_CIPHER_get_name.pod | 5 …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);
|
| HD | SSL_get_ciphers.pod | 14 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
|
| HD | ssl.pod | 51 =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/ |
| HD | ciphers.c | 98 STACK_OF(SSL_CIPHER) *sk; in MAIN() 187 SSL_CIPHER *c; in MAIN()
|
| HD | s_cb.c | 1455 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/ |
| HD | safestack.h | 1600 # 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/ |
| HD | tls_openssl.c | 4010 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/ |
| HD | indent.pro | 462 -T SSL_CIPHER
|