Lines Matching refs:algorithms
268 switch (c->algorithms & SSL_ENC_MASK) in ssl_cipher_get_evp()
311 switch (c->algorithms & SSL_MAC_MASK) in ssl_cipher_get_evp()
411 if ((c != NULL) && c->valid && !(c->algorithms & mask)) in ssl_cipher_collect_ciphers()
419 printf("\t%d: %s %lx %lx\n",i,c->name,c->id,c->algorithms); in ssl_cipher_collect_ciphers()
475 !(cipher_aliases[i].algorithms & mask)) in ssl_cipher_collect_aliases()
485 static void ssl_cipher_apply_rule(unsigned long algorithms, unsigned long mask, in ssl_cipher_apply_rule() argument
496 rule, algorithms, mask, algo_strength, mask_strength, in ssl_cipher_apply_rule()
517 ma = mask & cp->algorithms; in ssl_cipher_apply_rule()
521 …o_strength = %08lx\nMask = %08lx Mask_strength %08lx\n", cp->name, cp->algorithms, cp->algo_streng… in ssl_cipher_apply_rule()
522 …printf("ma = %08lx ma_s %08lx, ma&algo=%08lx, ma_s&algos=%08lx\n", ma, ma_s, ma&algorithms, ma_s&a… in ssl_cipher_apply_rule()
530 ((ma & algorithms) != ma) || in ssl_cipher_apply_rule()
639 unsigned long algorithms, mask, algo_strength, mask_strength; in ssl_cipher_process_rulestr() local
669 algorithms = mask = algo_strength = mask_strength = 0; in ssl_cipher_process_rulestr()
750 algorithms = (algorithms & ~ca_list[j]->mask) | /* 1 */ in ssl_cipher_process_rulestr()
751 (ca_list[j]->algorithms & ~mask) | /* 2 */ in ssl_cipher_process_rulestr()
752 (algorithms & ca_list[j]->algorithms); /* 3 */ in ssl_cipher_process_rulestr()
788 ssl_cipher_apply_rule(algorithms, mask, in ssl_cipher_process_rulestr()
948 alg=cipher->algorithms; in SSL_CIPHER_description()