• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/

Lines Matching refs:algorithms

341 	switch (c->algorithms & SSL_ENC_MASK)
393 switch (c->algorithms & SSL_MAC_MASK)
436 * where 128-bit and 256-bit algorithms simply will get
439 unsigned long m256; /* applies to 256-bit algorithms only */
478 /* finally consider algorithms where mask and m256 differ */
510 #define IS_MASKED(c) ((c)->algorithms & (((c)->alg_bits == 256) ? m256 : mask))
520 printf("\t%d: %s %lx %lx\n",i,c->name,c->id,c->algorithms);
571 * strength value (will be added in any case because algorithms=0).
576 !(cipher_aliases[i].algorithms & mask))
587 unsigned long algorithms, unsigned long mask,
598 rule, algorithms, mask, algo_strength, mask_strength,
616 if (cipher_id && (cp->algorithms & SSL_SSL_MASK) == ssl_version)
628 ma = mask & cp->algorithms;
632 printf("\nName: %s:\nAlgo = %08lx Algo_strength = %08lx\nMask = %08lx Mask_strength %08lx\n", cp->name, cp->algorithms, cp->algo_strength, mask, mask_strength);
633 printf("ma = %08lx ma_s %08lx, ma&algo=%08lx, ma_s&algos=%08lx\n", ma, ma_s, ma&algorithms, ma_s&algo_strength);
641 ((ma & algorithms) != ma) ||
659 if (((cp->algorithms & (SSL_kECDHE|SSL_kECDH|SSL_aECDSA)) != 0))
764 unsigned long algorithms, mask, algo_strength, mask_strength;
795 algorithms = mask = algo_strength = mask_strength = 0;
873 /* New algorithms:
878 algorithms = (algorithms & ~ca_list[j]->mask) | /* 1 */
879 (ca_list[j]->algorithms & ~mask) | /* 2 */
880 (algorithms & ca_list[j]->algorithms); /* 3 */
891 ssl_version = ca_list[j]->algorithms & SSL_SSL_MASK;
924 ssl_cipher_apply_rule(cipher_id, ssl_version, algorithms, mask,
960 * in algorithms, so we first get the mask of disabled ciphers.
1090 alg=cipher->algorithms;