Struct security_framework::trust::SecTrust
source · [−]pub struct SecTrust(_);
Expand description
A type representing a trust evaluation for a certificate.
Implementations
sourceimpl SecTrust
impl SecTrust
sourcepub fn create_with_certificates(
certs: &[SecCertificate],
policies: &[SecPolicy]
) -> Result<Self>
pub fn create_with_certificates(
certs: &[SecCertificate],
policies: &[SecPolicy]
) -> Result<Self>
Creates a SecTrustRef that is configured with a certificate chain, for validating that chain against a collection of policies.
sourcepub fn set_trust_verify_date(&mut self, date: &CFDate) -> Result<()>
pub fn set_trust_verify_date(&mut self, date: &CFDate) -> Result<()>
Sets the date and time against which the certificates in this trust object are verified.
sourcepub fn set_anchor_certificates(&mut self, certs: &[SecCertificate]) -> Result<()>
pub fn set_anchor_certificates(&mut self, certs: &[SecCertificate]) -> Result<()>
Sets additional anchor certificates used to validate trust.
sourcepub fn copy_anchor_certificates() -> Result<Vec<SecCertificate>>
pub fn copy_anchor_certificates() -> Result<Vec<SecCertificate>>
Retrieves the anchor (root) certificates stored by macOS
sourcepub fn set_trust_anchor_certificates_only(&mut self, only: bool) -> Result<()>
pub fn set_trust_anchor_certificates_only(&mut self, only: bool) -> Result<()>
If set to true
, only the certificates specified by
set_anchor_certificates
will be trusted, but not globally trusted
certificates.
sourcepub fn set_policy(&mut self, policy: &SecPolicy) -> Result<()>
pub fn set_policy(&mut self, policy: &SecPolicy) -> Result<()>
Sets the policy used to evaluate trust.
sourcepub fn set_options(&mut self, options: TrustOptions) -> Result<()>
pub fn set_options(&mut self, options: TrustOptions) -> Result<()>
Sets option flags for customizing evaluation of a trust object.
sourcepub fn get_network_fetch_allowed(&mut self) -> Result<bool>
pub fn get_network_fetch_allowed(&mut self) -> Result<bool>
Indicates whether this trust object is permitted to fetch missing intermediate certificates from the network.
sourcepub fn set_network_fetch_allowed(&mut self, allowed: bool) -> Result<()>
pub fn set_network_fetch_allowed(&mut self, allowed: bool) -> Result<()>
Specifies whether this trust object is permitted to fetch missing intermediate certificates from the network.
sourcepub fn set_trust_ocsp_response<I: Iterator<Item = impl AsRef<[u8]>>>(
&mut self,
ocsp_response: I
) -> Result<()>
pub fn set_trust_ocsp_response<I: Iterator<Item = impl AsRef<[u8]>>>(
&mut self,
ocsp_response: I
) -> Result<()>
Attaches Online Certificate Status Protocol (OSCP) response data to this trust object.
sourcepub fn copy_public_key(&mut self) -> Result<SecKey>
pub fn copy_public_key(&mut self) -> Result<SecKey>
Returns the public key for a leaf certificate after it has been evaluated.
sourcepub fn evaluate(&self) -> Result<TrustResult>
👎 Deprecated: use evaluate_with_error
pub fn evaluate(&self) -> Result<TrustResult>
use evaluate_with_error
Evaluates trust.
sourcepub fn evaluate_with_error(&self) -> Result<(), CFError>
pub fn evaluate_with_error(&self) -> Result<(), CFError>
Evaluates trust. Requires macOS 10.14 or iOS, otherwise it just calls evaluate()
sourcepub fn certificate_count(&self) -> CFIndex
pub fn certificate_count(&self) -> CFIndex
Returns the number of certificates in an evaluated certificate chain.
Note: evaluate must first be called on the SecTrust.
sourcepub fn certificate_at_index(&self, ix: CFIndex) -> Option<SecCertificate>
👎 Deprecated: deprecated by Apple
pub fn certificate_at_index(&self, ix: CFIndex) -> Option<SecCertificate>
deprecated by Apple
Returns a specific certificate from the certificate chain used to evaluate trust.
Note: evaluate must first be called on the SecTrust.
Trait Implementations
sourceimpl TCFType for SecTrust
impl TCFType for SecTrust
type Ref = *mut __SecTrust
type Ref = *mut __SecTrust
The reference type wrapped inside this type.
sourcefn as_concrete_TypeRef(&self) -> SecTrustRef
fn as_concrete_TypeRef(&self) -> SecTrustRef
Returns the object as its concrete TypeRef.
sourceunsafe fn wrap_under_get_rule(reference: SecTrustRef) -> Self
unsafe fn wrap_under_get_rule(reference: SecTrustRef) -> Self
Returns an instance of the object, wrapping the underlying CFTypeRef
subclass. Use this
when following Core Foundation’s “Get Rule”. The reference count is bumped. Read more
sourcefn as_CFTypeRef(&self) -> CFTypeRef
fn as_CFTypeRef(&self) -> CFTypeRef
Returns the object as a raw CFTypeRef
. The reference count is not adjusted.
sourceunsafe fn wrap_under_create_rule(reference: SecTrustRef) -> Self
unsafe fn wrap_under_create_rule(reference: SecTrustRef) -> Self
Returns an instance of the object, wrapping the underlying CFTypeRef
subclass. Use this
when following Core Foundation’s “Create Rule”. The reference count is not bumped. Read more
sourcefn as_CFType(&self) -> CFType
fn as_CFType(&self) -> CFType
Returns the object as a wrapped CFType
. The reference count is incremented by one.
sourcefn into_CFType(self) -> CFType
fn into_CFType(self) -> CFType
Returns the object as a wrapped CFType
. Consumes self and avoids changing the reference
count. Read more
sourcefn retain_count(&self) -> isize
fn retain_count(&self) -> isize
Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero. Read more
sourcefn instance_of<OtherCFType>(&self) -> bool where
OtherCFType: TCFType,
fn instance_of<OtherCFType>(&self) -> bool where
OtherCFType: TCFType,
Returns true if this value is an instance of another type.
impl ConcreteCFType for SecTrust
impl Eq for SecTrust
impl Send for SecTrust
impl Sync for SecTrust
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more