Home
last modified time | relevance | path

Searched refs:cipher_id (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/
Dssl_cipher.cc811 uint32_t cipher_id, uint32_t alg_mkey, uint32_t alg_auth, in ssl_cipher_apply_rule() argument
819 if (cipher_id == 0 && strength_bits == -1 && min_version == 0 && in ssl_cipher_apply_rule()
857 if (cipher_id != 0) { in ssl_cipher_apply_rule()
858 if (cipher_id != cp->id) { in ssl_cipher_apply_rule()
981 uint32_t cipher_id; in ssl_cipher_process_rulestr() local
1048 cipher_id = 0; in ssl_cipher_process_rulestr()
1084 cipher_id = cipher->id; in ssl_cipher_process_rulestr()
1089 if (cipher_id == 0) { in ssl_cipher_process_rulestr()
1140 ssl_cipher_apply_rule(cipher_id, alg_mkey, alg_auth, alg_enc, alg_mac, in ssl_cipher_process_rulestr()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc572 uint16_t cipher_id = in CheckHandshakeProperties() local
576 static_cast<uint16_t>(config->expect_cipher_aes) != cipher_id) { in CheckHandshakeProperties()
578 cipher_id, static_cast<uint16_t>(config->expect_cipher_aes)); in CheckHandshakeProperties()
584 static_cast<uint16_t>(config->expect_cipher_no_aes) != cipher_id) { in CheckHandshakeProperties()
586 cipher_id, static_cast<uint16_t>(config->expect_cipher_no_aes)); in CheckHandshakeProperties()
/external/python/cpython3/Modules/
D_ssl.c1884 unsigned long cipher_id; in cipher_to_dict() local
1895 cipher_id = SSL_CIPHER_get_id(cipher); in cipher_to_dict()
1921 "id", cipher_id, in cipher_to_dict()