Trait sourceview5::prelude::TlsCertificateExt
source · pub trait TlsCertificateExt: IsA<TlsCertificate> + Sealed + 'static {
// Provided methods
fn issuer(&self) -> Option<TlsCertificate> { ... }
fn is_same(&self, cert_two: &impl IsA<TlsCertificate>) -> bool { ... }
fn verify(
&self,
identity: Option<&impl IsA<SocketConnectable>>,
trusted_ca: Option<&impl IsA<TlsCertificate>>,
) -> TlsCertificateFlags { ... }
fn certificate(&self) -> Option<ByteArray> { ... }
fn certificate_pem(&self) -> Option<GString> { ... }
fn private_key(&self) -> Option<ByteArray> { ... }
fn private_key_pem(&self) -> Option<GString> { ... }
}
Provided Methods§
fn issuer(&self) -> Option<TlsCertificate>
fn is_same(&self, cert_two: &impl IsA<TlsCertificate>) -> bool
fn verify( &self, identity: Option<&impl IsA<SocketConnectable>>, trusted_ca: Option<&impl IsA<TlsCertificate>>, ) -> TlsCertificateFlags
fn certificate(&self) -> Option<ByteArray>
fn certificate_pem(&self) -> Option<GString>
fn private_key(&self) -> Option<ByteArray>
fn private_key_pem(&self) -> Option<GString>
Object Safety§
This trait is not object safe.