Searched refs:cipher_suites (Results 1 – 12 of 12) sorted by relevance
| /webrtc/dtls/src/handshake/ |
| H A D | handshake_message_client_hello.rs | 28 pub(crate) cipher_suites: Vec<CipherSuiteId>, field 40 && self.cipher_suites.len() == other.cipher_suites.len()) in eq() 45 for i in 0..self.cipher_suites.len() { in eq() 46 if self.cipher_suites[i] != other.cipher_suites[i] { in eq() 58 for cipher_suite in &self.cipher_suites { in fmt() 91 len += 2 + 2 * self.cipher_suites.len(); in size() 118 writer.write_u16::<BigEndian>(2 * self.cipher_suites.len() as u16)?; in marshal() 119 for cipher_suite in &self.cipher_suites { in marshal() 152 let mut cipher_suites = vec![]; in unmarshal() localVariable 156 cipher_suites.push(id); in unmarshal() [all …]
|
| H A D | handshake_test.rs | 47 cipher_suites: vec![], in test_handshake_message()
|
| /webrtc/dtls/src/cipher_suite/ |
| H A D | mod.rs | 199 let mut cipher_suites = vec![]; in cipher_suites_for_ids() localVariable 201 cipher_suites.push(cipher_suite_for_id(*id)?); in cipher_suites_for_ids() 203 Ok(cipher_suites) in cipher_suites_for_ids() 211 let cipher_suites = if !user_selected_suites.is_empty() { in parse_cipher_suites() localVariable 217 let filtered_cipher_suites: Vec<Box<dyn CipherSuite + Send + Sync>> = cipher_suites in parse_cipher_suites()
|
| /webrtc/dtls/src/ |
| H A D | config.rs | 22 pub cipher_suites: Vec<CipherSuiteId>, field 108 cipher_suites: vec![], in default() 183 &config.cipher_suites, in validate_config()
|
| /webrtc/dtls/src/conn/ |
| H A D | conn_test.rs | 537 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in test_psk() 548 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in test_psk() 598 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in test_psk_hint_fail() 609 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in test_psk_hint_fail() 1570 cipher_suites: client_cipher_suites, in test_cipher_suite_configuration() 1579 cipher_suites: server_cipher_suites, in test_cipher_suite_configuration() 1805 let cipher_suites = vec![ in test_server_timeout() localVariable 1855 cipher_suites, in test_server_timeout() 1981 cipher_suites: vec![ in test_protocol_version_validation() 2001 cipher_suites: vec![ in test_protocol_version_validation() [all …]
|
| H A D | mod.rs | 153 &config.cipher_suites, in new()
|
| /webrtc/dtls/src/handshake/handshake_message_client_hello/ |
| H A D | handshake_message_client_hello_test.rs | 41 cipher_suites: vec![ in test_handshake_message_client_hello()
|
| /webrtc/dtls/examples/listen/psk/ |
| H A D | listen_psk.rs | 64 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in main()
|
| /webrtc/dtls/examples/dial/psk/ |
| H A D | dial_psk.rs | 68 cipher_suites: vec![CipherSuiteId::Tls_Psk_With_Aes_128_Ccm_8], in main()
|
| /webrtc/dtls/src/flight/ |
| H A D | flight1.rs | 182 cipher_suites: cfg.local_cipher_suites.clone(), in generate()
|
| H A D | flight0.rs | 80 find_matching_cipher_suite(&client_hello.cipher_suites, &cfg.local_cipher_suites) in parse()
|
| H A D | flight3.rs | 402 cipher_suites: cfg.local_cipher_suites.clone(), in generate()
|