Home
last modified time | relevance | path

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

/webrtc/dtls/src/flight/
H A Dflight5.rs141 let cipher_suite = state.cipher_suite.lock().await; in parse() localVariable
563 let cipher_suite = state.cipher_suite.lock().await; in generate() localVariable
608 let mut cipher_suite = state.cipher_suite.lock().await; in initalize_cipher_suite() localVariable
H A Dflight6.rs152 let cipher_suite = state.cipher_suite.lock().await; in generate() localVariable
H A Dflight4.rs276 let mut cipher_suite = state.cipher_suite.lock().await; in parse() localVariable
541 let cipher_suite = state.cipher_suite.lock().await; in generate() localVariable
H A Dflight3.rs261 let cipher_suite = match cipher_suite_for_id(h.cipher_suite) { in parse() localVariable
/webrtc/dtls/src/handshake/
H A Dhandshake_message_server_hello.rs27 pub(crate) cipher_suite: CipherSuiteId, field
113 let cipher_suite: CipherSuiteId = reader.read_u16::<BigEndian>()?.into(); in unmarshal() localVariable
/webrtc/dtls/src/
H A Dstate.rs27 …pub(crate) cipher_suite: Arc<Mutex<Option<Box<dyn CipherSuite + Send + Sync>>>>, // nil if a ciphe… field
139 let cipher_suite = self.cipher_suite.lock().await; in serialize() localVariable
202 let mut cipher_suite = self.cipher_suite.lock().await; in init_cipher_suite() localVariable
294 let cipher_suite = self.cipher_suite.lock().await; in export_keying_material() localVariable
H A Dlib.rs7 pub mod cipher_suite; module
/webrtc/dtls/src/conn/
H A Dmod.rs63 cipher_suite: Arc<Mutex<Option<Box<dyn CipherSuite + Send + Sync>>>>, field
623 let cipher_suite = cipher_suite.lock().await; in process_packet() localVariable
680 let cipher_suite = cipher_suite.lock().await; in process_handshake_packet() localVariable
945 let cipher_suite = ctx.cipher_suite.lock().await; in handle_incoming_packet() localVariable
965 let cipher_suite = ctx.cipher_suite.lock().await; in handle_incoming_packet() localVariable
1060 let cipher_suite = ctx.cipher_suite.lock().await; in handle_incoming_packet() localVariable
H A Dconn_test.rs1614 let cipher_suite = client.state.cipher_suite.lock().await; in test_cipher_suite_configuration() localVariable