Searched defs:alg_k (Results 1 - 7 of 7) sorted by relevance

/external/openssl/ssl/
H A Dd1_clnt.c783 unsigned long alg_k; local
805 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
810 else if (alg_k & SSL_kRSA)
869 else if (alg_k & SSL_kKRB5)
888 alg_k, SSL_kKRB5);
1001 else if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
1057 else if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
1069 if ((alg_k & (SSL_kECDHr|SSL_kECDHe)) && (s->cert != NULL))
1243 else if (alg_k & SSL_kPSK)
H A Dd1_srvr.c150 unsigned long alg_k; local
356 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
362 && !(alg_k & SSL_kKRB5)
379 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
381 || (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
382 || (alg_k & SSL_kEECDH)
383 || ((alg_k & SSL_kRSA)
H A Ds3_lib.c2831 unsigned long alg_k,alg_a,mask_k,mask_a,emask_k,emask_a; local
2886 alg_k=c->algorithm_mkey;
2890 if (alg_k & SSL_kKRB5)
2898 if ((alg_k & SSL_kPSK) && s->psk_server_callback == NULL)
2904 ok = (alg_k & emask_k) && (alg_a & emask_a);
2906 printf("%d:[%08lX:%08lX:%08lX:%08lX]%p:%s (export)\n",ok,alg_k,alg_a,emask_k,emask_a,
2912 ok = (alg_k & mask_k) && (alg_a & mask_a);
2914 printf("%d:[%08lX:%08lX:%08lX:%08lX]%p:%s\n",ok,alg_k,alg_a,mask_k,mask_a,(void *)c,
3025 (alg_k & SSL_kEECDH)
3087 unsigned long alg_k; local
[all...]
H A Dt1_lib.c1207 unsigned long alg_k, alg_a; local
1214 alg_k = c->algorithm_mkey;
1216 if ((alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe) || (alg_a & SSL_aECDSA)))
1296 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey; local
1298 int using_ecc = (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe)) || (alg_a & SSL_aECDSA);
1453 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey; local
1456 ((alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe)) || (alg_a & SSL_aECDSA)))
H A Ds3_clnt.c1216 long n,alg_k,alg_a; local
1292 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
1297 if (alg_k & SSL_kPSK)
1342 if (alg_k & SSL_kRSA)
1396 else if (alg_k & SSL_kEDH)
1465 else if ((alg_k & SSL_kDHr) || (alg_k & SSL_kDHd))
1474 else if (alg_k & SSL_kEECDH)
1573 else if (alg_k)
1678 if (!(alg_a & SSL_aNULL) && !(alg_k
2051 unsigned long alg_k; local
2922 long alg_k,alg_a; local
[all...]
H A Ds3_srvr.c190 unsigned long alg_k,Time=(unsigned long)time(NULL); local
378 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
384 && !(alg_k & SSL_kKRB5)
411 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
413 || (alg_k & (SSL_kDHr|SSL_kDHd|SSL_kEDH))
414 || (alg_k & SSL_kEECDH)
415 || ((alg_k & SSL_kRSA)
1950 unsigned long alg_k; local
1981 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
1984 if (alg_k
[all...]
H A Dssl_lib.c2066 unsigned long alg_k, alg_a; local
2071 alg_k = cs->algorithm_mkey;
2088 if (alg_k & SSL_kECDHe || alg_k & SSL_kECDHr)
2096 if (alg_k & SSL_kECDHe)
2105 if (alg_k & SSL_kECDHr)
2140 unsigned long alg_k,alg_a,mask_k,mask_a; local
2158 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2161 if (alg_k & (SSL_kECDHr|SSL_kECDHe))
2180 else if (alg_k
[all...]

Completed in 96 milliseconds