Lines Matching refs:SSL_CIPHER
38 static SSL_CIPHER tls13_ciphers[] = {
162 static SSL_CIPHER ssl3_ciphers[] = {
3279 static SSL_CIPHER ssl3_scsvs[] = {
3298 const SSL_CIPHER *ap = (const SSL_CIPHER *)a; in cipher_compare()
3299 const SSL_CIPHER *bp = (const SSL_CIPHER *)b; in cipher_compare()
3358 const SSL_CIPHER *ssl3_get_cipher(unsigned int u) in ssl3_get_cipher()
3669 const SSL_CIPHER *cipher; in ssl3_ctrl()
4170 const SSL_CIPHER *ssl3_get_cipher_by_id(uint32_t id) in ssl3_get_cipher_by_id()
4172 SSL_CIPHER c; in ssl3_get_cipher_by_id()
4173 const SSL_CIPHER *cp; in ssl3_get_cipher_by_id()
4185 const SSL_CIPHER *ssl3_get_cipher_by_std_name(const char *stdname) in ssl3_get_cipher_by_std_name()
4187 SSL_CIPHER *tbl; in ssl3_get_cipher_by_std_name()
4188 SSL_CIPHER *alltabs[] = {tls13_ciphers, ssl3_ciphers, ssl3_scsvs}; in ssl3_get_cipher_by_std_name()
4209 const SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p) in ssl3_get_cipher_by_char()
4216 int ssl3_put_cipher_by_char(const SSL_CIPHER *c, WPACKET *pkt, size_t *len) in ssl3_put_cipher_by_char()
4238 const SSL_CIPHER *ssl3_choose_cipher(SSL_CONNECTION *s, STACK_OF(SSL_CIPHER) *clnt, in ssl3_choose_cipher()
4239 STACK_OF(SSL_CIPHER) *srvr) in ssl3_choose_cipher()
4241 const SSL_CIPHER *c, *ret = NULL; in ssl3_choose_cipher()
4242 STACK_OF(SSL_CIPHER) *prio, *allow; in ssl3_choose_cipher()
4245 STACK_OF(SSL_CIPHER) *prio_chacha = NULL; in ssl3_choose_cipher()
4411 const SSL_CIPHER *tmp = sk_SSL_CIPHER_value(allow, ii); in ssl3_choose_cipher()