Home
last modified time | relevance | path

Searched refs:cipher_suite_for_id (Results 1 – 4 of 4) sorted by relevance

/webrtc/dtls/src/cipher_suite/
H A Dmod.rs141 pub fn cipher_suite_for_id(id: CipherSuiteId) -> Result<Box<dyn CipherSuite + Send + Sync>> { in cipher_suite_for_id() function
201 cipher_suites.push(cipher_suite_for_id(*id)?); in cipher_suites_for_ids()
/webrtc/dtls/src/flight/
H A Dflight3.rs21 use crate::cipher_suite::cipher_suite_for_id;
261 let cipher_suite = match cipher_suite_for_id(h.cipher_suite) { in parse()
H A Dflight0.rs82 if let Ok(cipher_suite) = cipher_suite_for_id(id) { in parse()
/webrtc/dtls/src/
H A Dstate.rs188 self.cipher_suite = Arc::new(Mutex::new(Some(cipher_suite_for_id( in deserialize()