Home
last modified time | relevance | path

Searched refs:SSL_kRSA (Results 1 – 19 of 19) sorted by relevance

/external/openssl/ssl/
Ds2_lib.c131 SSL_kRSA,
148 SSL_kRSA,
164 SSL_kRSA,
180 SSL_kRSA,
196 SSL_kRSA,
213 SSL_kRSA,
230 SSL_kRSA,
246 SSL_kRSA,
263 SSL_kRSA,
Ds3_lib.c178 SSL_kRSA,
194 SSL_kRSA,
210 SSL_kRSA,
226 SSL_kRSA,
242 SSL_kRSA,
258 SSL_kRSA,
275 SSL_kRSA,
292 SSL_kRSA,
308 SSL_kRSA,
324 SSL_kRSA,
[all …]
Dssl_ciph.c239 {0,SSL_TXT_kRSA,0, SSL_kRSA, 0,0,0,0,0,0,0,0},
280 {0,SSL_TXT_RSA,0, SSL_kRSA,SSL_aRSA,0,0,0,0,0,0,0},
706 *mkey |= SSL_kRSA; in ssl_cipher_get_disabled()
1426 ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); in STACK_OF()
1576 case SSL_kRSA: in SSL_CIPHER_description()
1793 case SSL_kRSA: in SSL_CIPHER_authentication_method()
Ds3_clnt.c339 !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kRSA))) in IMPLEMENT_ssl3_meth_func()
1631 else if (alg_k & SSL_kRSA) in ssl3_get_key_exchange()
2040 !((alg_a & SSL_aPSK) && !(alg_k & SSL_kRSA))) in ssl3_get_key_exchange()
2557 else if (alg_k & SSL_kRSA) in ssl3_send_client_key_exchange()
3540 if ((alg_k & SSL_kRSA) && in ssl3_check_cert_and_algorithm()
3571 if (alg_k & SSL_kRSA) in ssl3_check_cert_and_algorithm()
Ds3_srvr.c421 !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kRSA))) in IMPLEMENT_ssl3_meth_func()
492 || ((alg_k & SSL_kRSA) in IMPLEMENT_ssl3_meth_func()
1668 if (alg_k & SSL_kRSA) in ssl3_send_server_key_exchange()
1912 && !((alg_a & SSL_aPSK) && !(alg_k & SSL_kRSA))) in ssl3_send_server_key_exchange()
2328 if (alg_k & SSL_kRSA) in ssl3_get_client_key_exchange()
Dd1_srvr.c478 || ((alg_k & SSL_kRSA) in IMPLEMENT_dtls1_meth_func()
1080 if (type & SSL_kRSA) in dtls1_send_server_key_exchange()
Dssl_locl.h291 #define SSL_kRSA 0x00000001L /* RSA key exchange */ macro
Dd1_clnt.c1000 else if (alg_k & SSL_kRSA) in dtls1_send_client_key_exchange()
Dssl_lib.c2265 mask_k|=SSL_kRSA; in ssl_set_cert_masks()
2267 emask_k|=SSL_kRSA; in ssl_set_cert_masks()
/external/chromium_org/third_party/boringssl/src/ssl/
Ds3_lib.c176 SSL_kRSA,
192 SSL_kRSA,
208 SSL_kRSA,
243 SSL_kRSA,
289 SSL_kRSA,
338 SSL_kRSA,
354 SSL_kRSA,
487 SSL_kRSA,
503 SSL_kRSA,
Dssl_ciph.c188 {0,SSL_TXT_kRSA,0, SSL_kRSA, 0,0,0,0,0,0,0,0},
208 {0,SSL_TXT_RSA,0, SSL_kRSA,SSL_aRSA,0,0,0,0,0,0,0},
1237 case SSL_kRSA: in SSL_CIPHER_description()
1388 case SSL_kRSA: in SSL_CIPHER_get_kx_name()
1469 !(cipher->algorithm_mkey & SSL_kRSA)) in ssl_cipher_has_server_public_key()
Ds3_clnt.c1270 if (alg_k & SSL_kRSA) in ssl3_get_server_key_exchange()
1971 if (alg_k & SSL_kRSA) in ssl3_send_client_key_exchange()
2519 if ((alg_k & SSL_kRSA) && in ssl3_check_cert_and_algorithm()
Dssl_locl.h277 #define SSL_kRSA 0x00000001L /* RSA key exchange */ macro
Ds3_srvr.c1838 if (alg_k & SSL_kRSA) in ssl3_get_client_key_exchange()
Dssl_lib.c2209 mask_k|=SSL_kRSA; in ssl_set_cert_masks()
/external/openssl/patches/
D0011-ecdhe_psk.patch31 + !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kRSA)))
153 - if (alg_k & SSL_kRSA)
154 + else if (alg_k & SSL_kRSA)
194 + !((alg_a & SSL_aPSK) && !(alg_k & SSL_kRSA)))
646 + !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kRSA)))
706 - if (type & SSL_kRSA)
707 + if (alg_k & SSL_kRSA)
790 + && !((alg_a & SSL_aPSK) && !(alg_k & SSL_kRSA)))
991 if (alg_k & SSL_kRSA)
D0003-jsse.patch202 + case SSL_kRSA:
/external/conscrypt/src/main/java/org/conscrypt/
DSSLParametersImpl.java943 case NativeCrypto.SSL_kRSA: in getServerX509KeyType()
DNativeCrypto.java1001 public static final int SSL_kRSA = 0x00000001; field in NativeCrypto