Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dssl_cipher.cc810 uint32_t cipher_id, uint32_t alg_mkey, uint32_t alg_auth, in ssl_cipher_apply_rule() argument
818 if (cipher_id == 0 && strength_bits == -1 && min_version == 0 && in ssl_cipher_apply_rule()
856 if (cipher_id != 0) { in ssl_cipher_apply_rule()
857 if (cipher_id != cp->id) { in ssl_cipher_apply_rule()
980 uint32_t cipher_id; in ssl_cipher_process_rulestr() local
1047 cipher_id = 0; in ssl_cipher_process_rulestr()
1083 cipher_id = cipher->id; in ssl_cipher_process_rulestr()
1088 if (cipher_id == 0) { in ssl_cipher_process_rulestr()
1139 ssl_cipher_apply_rule(cipher_id, alg_mkey, alg_auth, alg_enc, alg_mac, in ssl_cipher_process_rulestr()
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dssl_cipher.cc810 uint32_t cipher_id, uint32_t alg_mkey, uint32_t alg_auth, in ssl_cipher_apply_rule() argument
818 if (cipher_id == 0 && strength_bits == -1 && min_version == 0 && in ssl_cipher_apply_rule()
856 if (cipher_id != 0) { in ssl_cipher_apply_rule()
857 if (cipher_id != cp->id) { in ssl_cipher_apply_rule()
980 uint32_t cipher_id; in ssl_cipher_process_rulestr() local
1047 cipher_id = 0; in ssl_cipher_process_rulestr()
1083 cipher_id = cipher->id; in ssl_cipher_process_rulestr()
1088 if (cipher_id == 0) { in ssl_cipher_process_rulestr()
1139 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.cc601 uint16_t cipher_id = SSL_CIPHER_get_protocol_id(SSL_get_current_cipher(ssl)); in CheckHandshakeProperties() local
604 static_cast<uint16_t>(config->expect_cipher_aes) != cipher_id) { in CheckHandshakeProperties()
606 cipher_id, static_cast<uint16_t>(config->expect_cipher_aes)); in CheckHandshakeProperties()
612 static_cast<uint16_t>(config->expect_cipher_no_aes) != cipher_id) { in CheckHandshakeProperties()
614 cipher_id, static_cast<uint16_t>(config->expect_cipher_no_aes)); in CheckHandshakeProperties()
619 static_cast<uint16_t>(config->expect_cipher) != cipher_id) { in CheckHandshakeProperties()
620 fprintf(stderr, "Cipher ID was %04x, wanted %04x\n", cipher_id, in CheckHandshakeProperties()
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/
Dbssl_shim.cc614 uint16_t cipher_id = in CheckHandshakeProperties() local
618 static_cast<uint16_t>(config->expect_cipher_aes) != cipher_id) { in CheckHandshakeProperties()
620 cipher_id, static_cast<uint16_t>(config->expect_cipher_aes)); in CheckHandshakeProperties()
626 static_cast<uint16_t>(config->expect_cipher_no_aes) != cipher_id) { in CheckHandshakeProperties()
628 cipher_id, static_cast<uint16_t>(config->expect_cipher_no_aes)); in CheckHandshakeProperties()
/external/rust/crates/quiche/src/
Dtls.rs544 let cipher_id = unsafe { SSL_CIPHER_get_id(cipher) }; in get_cipher_from_ptr() localVariable
546 let alg = match cipher_id { in get_cipher_from_ptr()
/external/libsrtp2/srtp/
Dsrtp.c681 srtp_cipher_type_id_t cipher_id; in srtp_kdf_init() local
686 cipher_id = SRTP_AES_ICM_256; in srtp_kdf_init()
689 cipher_id = SRTP_AES_ICM_192; in srtp_kdf_init()
692 cipher_id = SRTP_AES_ICM_128; in srtp_kdf_init()
699 stat = srtp_crypto_kernel_alloc_cipher(cipher_id, &kdf->cipher, key_len, 0); in srtp_kdf_init()
/external/python/cpython3/Modules/
D_ssl.c1999 unsigned long cipher_id; in cipher_to_dict() local
2010 cipher_id = SSL_CIPHER_get_id(cipher); in cipher_to_dict()
2036 "id", cipher_id, in cipher_to_dict()