| /webrtc/dtls/src/handshake/ |
| H A D | mod.rs | 38 pub enum HandshakeType { enum 54 impl fmt::Display for HandshakeType { implementation 73 impl From<u8> for HandshakeType { implementation 76 0 => HandshakeType::HelloRequest, in from() 77 1 => HandshakeType::ClientHello, in from() 78 2 => HandshakeType::ServerHello, in from() 80 11 => HandshakeType::Certificate, in from() 86 20 => HandshakeType::Finished, in from() 87 _ => HandshakeType::Invalid, in from() 200 HandshakeType::ClientHello => { in unmarshal() [all …]
|
| H A D | handshake_cache.rs | 16 typ: HandshakeType, 25 pub(crate) typ: HandshakeType, 48 typ: HandshakeType, in push() argument 177 typ: HandshakeType::ClientHello, in session_hash() 183 typ: HandshakeType::ServerHello, in session_hash() 189 typ: HandshakeType::Certificate, in session_hash() 195 typ: HandshakeType::ServerKeyExchange, in session_hash() 201 typ: HandshakeType::CertificateRequest, in session_hash() 207 typ: HandshakeType::ServerHelloDone, in session_hash() 213 typ: HandshakeType::Certificate, in session_hash() [all …]
|
| H A D | handshake_message_server_hello_done.rs | 12 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 13 HandshakeType::ServerHelloDone in handshake_type()
|
| H A D | handshake_message_finished.rs | 14 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 15 HandshakeType::Finished in handshake_type()
|
| H A D | handshake_message_certificate_verify.rs | 19 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 20 HandshakeType::CertificateVerify in handshake_type()
|
| H A D | handshake_message_hello_verify_request.rs | 34 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 35 HandshakeType::HelloVerifyRequest in handshake_type()
|
| H A D | handshake_message_certificate.rs | 17 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 18 HandshakeType::Certificate in handshake_type()
|
| H A D | handshake_message_client_key_exchange.rs | 16 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 17 HandshakeType::ClientKeyExchange in handshake_type()
|
| H A D | handshake_message_certificate_request.rs | 27 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 28 HandshakeType::CertificateRequest in handshake_type()
|
| H A D | handshake_message_server_hello.rs | 55 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 56 HandshakeType::ServerHello in handshake_type()
|
| H A D | handshake_message_server_key_exchange.rs | 25 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 26 HandshakeType::ServerKeyExchange in handshake_type()
|
| H A D | handshake_header.rs | 12 pub(crate) handshake_type: HandshakeType,
|
| H A D | handshake_test.rs | 21 handshake_type: HandshakeType::ClientHello, in test_handshake_message()
|
| H A D | handshake_message_client_hello.rs | 76 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() argument 77 HandshakeType::ClientHello in handshake_type()
|
| /webrtc/dtls/src/handshake/handshake_cache/ |
| H A D | handshake_cache_test.rs | 345 typ: HandshakeType::ClientHello, in test_handshake_cache_session_hash() 352 typ: HandshakeType::ServerHello, in test_handshake_cache_session_hash() 359 typ: HandshakeType::Certificate, in test_handshake_cache_session_hash() 512 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 519 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 592 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 599 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 606 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 613 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() 620 typ: HandshakeType::Finished, in test_handshake_cache_session_hash() [all …]
|
| /webrtc/dtls/src/flight/ |
| H A D | flight6.rs | 38 typ: HandshakeType::Finished, in parse() 90 typ: HandshakeType::ClientHello, in generate() 96 typ: HandshakeType::ServerHello, in generate() 102 typ: HandshakeType::Certificate, in generate() 108 typ: HandshakeType::ServerKeyExchange, in generate() 114 typ: HandshakeType::CertificateRequest, in generate() 120 typ: HandshakeType::ServerHelloDone, in generate() 126 typ: HandshakeType::Certificate, in generate() 132 typ: HandshakeType::ClientKeyExchange, in generate() 138 typ: HandshakeType::CertificateVerify, in generate() [all …]
|
| H A D | flight5.rs | 50 typ: HandshakeType::Finished, in parse() 78 typ: HandshakeType::ClientHello, in parse() 84 typ: HandshakeType::ServerHello, in parse() 90 typ: HandshakeType::Certificate, in parse() 96 typ: HandshakeType::ServerKeyExchange, in parse() 108 typ: HandshakeType::ServerHelloDone, in parse() 114 typ: HandshakeType::Certificate, in parse() 120 typ: HandshakeType::ClientKeyExchange, in parse() 132 typ: HandshakeType::Finished, in parse() 247 typ: HandshakeType::ServerKeyExchange, in generate() [all …]
|
| H A D | flight3.rs | 55 typ: HandshakeType::HelloVerifyRequest, in parse() 103 typ: HandshakeType::ServerHello, in parse() 109 typ: HandshakeType::ServerKeyExchange, in parse() 115 typ: HandshakeType::ServerHelloDone, in parse() 129 typ: HandshakeType::ServerHello, in parse() 135 typ: HandshakeType::Certificate, in parse() 141 typ: HandshakeType::ServerKeyExchange, in parse() 147 typ: HandshakeType::CertificateRequest, in parse() 153 typ: HandshakeType::ServerHelloDone, in parse() 170 if let Some(message) = msgs.get(&HandshakeType::ServerHello) { in parse() [all …]
|
| H A D | flight4.rs | 57 typ: HandshakeType::Certificate, in parse() 63 typ: HandshakeType::ClientKeyExchange, in parse() 69 typ: HandshakeType::CertificateVerify, in parse() 83 msgs.get(&HandshakeType::ClientKeyExchange) in parse() 144 typ: HandshakeType::ClientHello, in parse() 150 typ: HandshakeType::ServerHello, in parse() 156 typ: HandshakeType::Certificate, in parse() 174 typ: HandshakeType::ServerHelloDone, in parse() 180 typ: HandshakeType::Certificate, in parse() 414 typ: HandshakeType::Finished, in parse() [all …]
|
| H A D | flight1.rs | 51 typ: HandshakeType::HelloVerifyRequest, in parse() 57 typ: HandshakeType::ServerHello, in parse() 71 if msgs.contains_key(&HandshakeType::ServerHello) { in parse() 78 if let Some(message) = msgs.get(&HandshakeType::HelloVerifyRequest) { in parse()
|
| H A D | flight2.rs | 39 typ: HandshakeType::ClientHello, in parse() 57 if let Some(message) = msgs.get(&HandshakeType::ClientHello) { in parse()
|
| H A D | flight0.rs | 38 typ: HandshakeType::ClientHello, in parse() 52 if let Some(message) = msgs.get(&HandshakeType::ClientHello) { in parse()
|