Home
last modified time | relevance | path

Searched refs:ClientAuthType (Results 1 – 7 of 7) sorted by relevance

/webrtc/dtls/src/
H A Dconfig.rs34 pub client_auth: ClientAuthType,
111 client_auth: ClientAuthType::default(), in default()
138 pub enum ClientAuthType { enum
H A Dhandshaker.rs84 …pub(crate) client_auth: ClientAuthType, // If we are a client should we request a client certifica…
109 client_auth: ClientAuthType::NoClientCert, in default()
/webrtc/dtls/examples/listen/verify/
H A Dlisten_verify.rs6 use webrtc_dtls::config::{ClientAuthType, ExtendedMasterSecretType};
73 client_auth: ClientAuthType::RequireAndVerifyClientCert, //RequireAnyClientCert, // in main()
/webrtc/dtls/src/conn/
H A Dconn_test.rs881 client_auth: ClientAuthType::NoClientCert, in test_client_certificate()
896 client_auth: ClientAuthType::RequireAnyClientCert, in test_client_certificate()
911 client_auth: ClientAuthType::RequestClientCert, in test_client_certificate()
925 client_auth: ClientAuthType::RequestClientCert, in test_client_certificate()
940 client_auth: ClientAuthType::RequireAnyClientCert, in test_client_certificate()
1344 client_auth: ClientAuthType::NoClientCert, in test_server_certificate()
1358 client_auth: ClientAuthType::NoClientCert, in test_server_certificate()
1372 client_auth: ClientAuthType::NoClientCert, in test_server_certificate()
1420 client_auth: ClientAuthType::NoClientCert, in test_server_certificate()
1434 client_auth: ClientAuthType::NoClientCert, in test_server_certificate()
[all …]
H A Dmod.rs217 >= ClientAuthType::VerifyClientCertIfGiven as u8 in new()
/webrtc/dtls/src/flight/
H A Dflight4.rs230 if cfg.client_auth as u8 >= ClientAuthType::VerifyClientCertIfGiven as u8 { in parse()
442 ClientAuthType::RequireAnyClientCert => { in parse()
458 ClientAuthType::VerifyClientCertIfGiven => { in parse()
469 ClientAuthType::RequireAndVerifyClientCert => { in parse()
489 ClientAuthType::NoClientCert | ClientAuthType::RequestClientCert => { in parse()
662 if cfg.client_auth as u8 > ClientAuthType::NoClientCert as u8 { in generate()
/webrtc/webrtc/src/dtls_transport/
H A Dmod.rs9 use dtls::config::ClientAuthType;
359 client_auth: ClientAuthType::RequireAnyClientCert, in prepare_transport()