Lines Matching refs:SSL_CIPHER
37 static SSL_CIPHER tls13_ciphers[] = {
128 static SSL_CIPHER ssl3_ciphers[] = {
3222 static SSL_CIPHER ssl3_scsvs[] = {
3241 const SSL_CIPHER *ap = (const SSL_CIPHER *)a; in cipher_compare()
3242 const SSL_CIPHER *bp = (const SSL_CIPHER *)b; in cipher_compare()
3303 const SSL_CIPHER *ssl3_get_cipher(unsigned int u) in ssl3_get_cipher()
3585 const SSL_CIPHER *cipher; in ssl3_ctrl()
4066 const SSL_CIPHER *ssl3_get_cipher_by_id(uint32_t id) in ssl3_get_cipher_by_id()
4068 SSL_CIPHER c; in ssl3_get_cipher_by_id()
4069 const SSL_CIPHER *cp; in ssl3_get_cipher_by_id()
4081 const SSL_CIPHER *ssl3_get_cipher_by_std_name(const char *stdname) in ssl3_get_cipher_by_std_name()
4083 SSL_CIPHER *tbl; in ssl3_get_cipher_by_std_name()
4084 SSL_CIPHER *alltabs[] = {tls13_ciphers, ssl3_ciphers, ssl3_scsvs}; in ssl3_get_cipher_by_std_name()
4105 const SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p) in ssl3_get_cipher_by_char()
4112 int ssl3_put_cipher_by_char(const SSL_CIPHER *c, WPACKET *pkt, size_t *len) in ssl3_put_cipher_by_char()
4134 const SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt, in ssl3_choose_cipher()
4135 STACK_OF(SSL_CIPHER) *srvr) in ssl3_choose_cipher()
4137 const SSL_CIPHER *c, *ret = NULL; in ssl3_choose_cipher()
4138 STACK_OF(SSL_CIPHER) *prio, *allow; in ssl3_choose_cipher()
4141 STACK_OF(SSL_CIPHER) *prio_chacha = NULL; in ssl3_choose_cipher()
4307 const SSL_CIPHER *tmp = sk_SSL_CIPHER_value(allow, ii); in ssl3_choose_cipher()