Home
last modified time | relevance | path

Searched defs:cipher_suite (Results 1 – 25 of 115) sorted by relevance

12345

/external/cronet/stable/net/ssl/
Dssl_cipher_suite_names.cc26 int ObsoleteSSLStatusForCipherSuite(uint16_t cipher_suite) { in ObsoleteSSLStatusForCipherSuite()
66 uint16_t cipher_suite) { in SSLCipherSuiteToStrings()
163 uint16_t* cipher_suite) { in ParseSSLCipherString()
181 uint16_t cipher_suite = SSLConnectionStatusToCipherSuite(connection_status); in ObsoleteSSLStatus() local
189 bool IsTLSCipherSuiteAllowedByHTTP2(uint16_t cipher_suite) { in IsTLSCipherSuiteAllowedByHTTP2()
Dssl_cipher_suite_names_unittest.cc33 int MakeConnectionStatus(int version, uint16_t cipher_suite) { in MakeConnectionStatus()
112 uint16_t cipher_suite = 0; in TEST() local
128 uint16_t cipher_suite = 0; in TEST() local
/external/cronet/tot/net/ssl/
Dssl_cipher_suite_names.cc26 int ObsoleteSSLStatusForCipherSuite(uint16_t cipher_suite) { in ObsoleteSSLStatusForCipherSuite()
66 uint16_t cipher_suite) { in SSLCipherSuiteToStrings()
163 uint16_t* cipher_suite) { in ParseSSLCipherString()
181 uint16_t cipher_suite = SSLConnectionStatusToCipherSuite(connection_status); in ObsoleteSSLStatus() local
189 bool IsTLSCipherSuiteAllowedByHTTP2(uint16_t cipher_suite) { in IsTLSCipherSuiteAllowedByHTTP2()
Dssl_cipher_suite_names_unittest.cc33 int MakeConnectionStatus(int version, uint16_t cipher_suite) { in MakeConnectionStatus()
112 uint16_t cipher_suite = 0; in TEST() local
128 uint16_t cipher_suite = 0; in TEST() local
/external/openthread/third_party/mbedtls/repo/include/psa/
Dcrypto_extra.h1719 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_algorithm()
1725 psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_algorithm()
1736 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_primitive()
1743 psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_primitive()
1752 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_family()
1758 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_bits()
1764 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_hash()
1769 static inline void psa_pake_cs_set_hash(psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_hash()
/external/mbedtls/include/psa/
Dcrypto_extra.h1904 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_algorithm()
1910 psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_algorithm()
1921 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_primitive()
1928 psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_primitive()
1937 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_family()
1943 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_bits()
1949 const psa_pake_cipher_suite_t *cipher_suite) in psa_pake_cs_get_hash()
1954 static inline void psa_pake_cs_set_hash(psa_pake_cipher_suite_t *cipher_suite, in psa_pake_cs_set_hash()
/external/rust/android-crates-io/crates/mls-rs/src/test_utils/
Dfuzz_tests.rs37 let cipher_suite = CipherSuite::CURVE25519_AES128; in create_group() localVariable
100 let cipher_suite = MlsCryptoProvider::new() in make_identity() localVariable
/external/rust/android-crates-io/crates/mls-rs/src/group/
Dcontext.rs23 pub(crate) cipher_suite: CipherSuite, field
81 pub fn cipher_suite(&self) -> CipherSuite { in cipher_suite() method
/external/rust/android-crates-io/crates/mls-rs/src/key_package/
Dmod.rs40 pub cipher_suite: CipherSuite, field
90 pub cipher_suite: CipherSuite, field
105 pub fn cipher_suite(&self) -> CipherSuite { in cipher_suite() method
252 cipher_suite: u16, field
/external/webrtc/rtc_base/
Dssl_stream_adapter.cc98 bool SSLStreamAdapter::GetSslCipherSuite(int* cipher_suite) { in GetSslCipherSuite()
130 std::string SSLStreamAdapter::SslCipherSuiteToName(int cipher_suite) { in SslCipherSuiteToName()
/external/rust/android-crates-io/crates/mls-rs/benches/
Dgroup_commit.rs9 let cipher_suite = CipherSuite::CURVE25519_AES128; in bench() localVariable
Dgroup_receive_commit.rs9 let cipher_suite = CipherSuite::CURVE25519_AES128; in bench() localVariable
Dgroup_application.rs11 let cipher_suite = CipherSuite::CURVE25519_AES128; in bench() localVariable
Dgroup_add.rs63 let cipher_suite = CipherSuite::CURVE25519_AES128; in make_client() localVariable
/external/cronet/stable/net/third_party/quiche/src/quiche/quic/core/crypto/
Dquic_encrypter.cc47 uint32_t cipher_suite) { in CreateFromCipherSuite()
Dquic_decrypter.cc50 uint32_t cipher_suite) { in CreateFromCipherSuite()
/external/cronet/tot/net/third_party/quiche/src/quiche/quic/core/crypto/
Dquic_encrypter.cc47 uint32_t cipher_suite) { in CreateFromCipherSuite()
Dquic_decrypter.cc50 uint32_t cipher_suite) { in CreateFromCipherSuite()
/external/rust/android-crates-io/crates/mls-rs/src/tree_kem/
Dprivate.rs221 let cipher_suite = TEST_CIPHER_SUITE; in test_update_secrets() localVariable
254 let cipher_suite = TEST_CIPHER_SUITE; in test_update_secrets_key_mismatch() localVariable
/external/webrtc/api/
Dcrypto_params.h36 std::string cipher_suite; member
/external/rust/android-crates-io/crates/mls-rs/examples/
Dbasic_usage.rs21 let cipher_suite = crypto_provider.cipher_suite_provider(CIPHERSUITE).unwrap(); in make_client() localVariable
/external/boringssl/src/ssl/test/
Dmock_quic_transport.cc95 uint16_t cipher_suite; in ReadHeader() local
242 uint16_t cipher_suite = write_levels_[level].cipher; in WriteRecord() local
/external/cronet/tot/third_party/boringssl/src/ssl/test/
Dmock_quic_transport.cc95 uint16_t cipher_suite; in ReadHeader() local
242 uint16_t cipher_suite = write_levels_[level].cipher; in WriteRecord() local
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/ssl/test/
Dmock_quic_transport.cc97 uint16_t cipher_suite; in ReadHeader() local
244 uint16_t cipher_suite = write_levels_[level].cipher; in WriteRecord() local
/external/cronet/stable/third_party/boringssl/src/ssl/test/
Dmock_quic_transport.cc95 uint16_t cipher_suite; in ReadHeader() local
242 uint16_t cipher_suite = write_levels_[level].cipher; in WriteRecord() local

12345