Struct cassandra_cpp::Ssl
source · pub struct Ssl(_);
Expand description
Describes the SSL configuration of a cluster.
Implementations§
source§impl Ssl
impl Ssl
sourcepub fn add_trusted_cert(&mut self, cert: &str) -> Result<&mut Self>
pub fn add_trusted_cert(&mut self, cert: &str) -> Result<&mut Self>
Adds a trusted certificate. This is used to verify the peer’s certificate.
sourcepub fn set_verify_flags(&mut self, flags: &[SslVerifyFlag])
pub fn set_verify_flags(&mut self, flags: &[SslVerifyFlag])
Sets verification performed on the peer’s certificate.
CASS_SSL_VERIFY_NONE - No verification is performed
CASS_SSL_VERIFY_PEER_CERT - Certificate is present and valid
CASS_SSL_VERIFY_PEER_IDENTITY - IP address matches the certificate’s common name or one of its subject alternative names. This implies the certificate is also present.
Default: CASS_SSL_VERIFY_PEER_CERT