int opts = 0;
std::vector<std::string> tls_alpn_protocols;
std::vector<std::string> tls_elliptic_curves; // An optional custom SSL certificate verifier that an API user can provide to // inject their own certificate verification logic (not available to users // outside of the WebRTC repo).
SSLCertificateVerifier* tls_cert_verifier = nullptr;
};
// The DTLS options below are mutually exclusive.
OPT_DTLS = 0x20, // Real and secure DTLS.
OPT_DTLS_INSECURE = 0x10, // Insecure DTLS without certificate validation.
// The TLS options below are mutually exclusive.
OPT_TLS = 0x02, // Real and secure TLS.
OPT_TLS_FAKE = 0x01, // Fake TLS with a dummy SSL handshake.
OPT_TLS_INSECURE = 0x08, // Insecure TLS without certificate validation.
// Deprecated, use OPT_TLS_FAKE.
OPT_SSLTCP = OPT_TLS_FAKE,
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.