security_framework_sys/
trust.rsuse crate::base::SecCertificateRef;
use crate::base::SecKeyRef;
use core_foundation_sys::array::CFArrayRef;
use core_foundation_sys::base::{Boolean, CFIndex, CFTypeID, CFTypeRef, OSStatus};
use core_foundation_sys::date::CFDateRef;
#[cfg(any(feature = "OSX_10_13", target_os = "ios", target_os = "tvos", target_os = "watchos", target_os = "visionos"))]
use core_foundation_sys::error::CFErrorRef;
pub type SecTrustResultType = u32;
pub const kSecTrustResultInvalid: SecTrustResultType = 0;
pub const kSecTrustResultProceed: SecTrustResultType = 1;
pub const kSecTrustResultDeny: SecTrustResultType = 3;
pub const kSecTrustResultUnspecified: SecTrustResultType = 4;
pub const kSecTrustResultRecoverableTrustFailure: SecTrustResultType = 5;
pub const kSecTrustResultFatalTrustFailure: SecTrustResultType = 6;
pub const kSecTrustResultOtherError: SecTrustResultType = 7;
#[cfg(target_os = "macos")]
mod flags {
pub type SecTrustOptionFlags = u32;
pub const kSecTrustOptionAllowExpired: SecTrustOptionFlags = 0x0000_0001;
pub const kSecTrustOptionLeafIsCA: SecTrustOptionFlags = 0x0000_0002;
pub const kSecTrustOptionFetchIssuerFromNet: SecTrustOptionFlags = 0x0000_0004;
pub const kSecTrustOptionAllowExpiredRoot: SecTrustOptionFlags = 0x0000_0008;
pub const kSecTrustOptionRequireRevPerCert: SecTrustOptionFlags = 0x0000_0010;
pub const kSecTrustOptionUseTrustSettings: SecTrustOptionFlags = 0x0000_0020;
pub const kSecTrustOptionImplicitAnchors: SecTrustOptionFlags = 0x0000_0040;
}
#[cfg(target_os = "macos")]
pub use flags::*;
pub enum __SecTrust {}
pub type SecTrustRef = *mut __SecTrust;
extern "C" {
pub fn SecTrustGetTypeID() -> CFTypeID;
pub fn SecTrustGetCertificateCount(trust: SecTrustRef) -> CFIndex;
#[deprecated(note = "deprecated by Apple")]
pub fn SecTrustGetCertificateAtIndex(trust: SecTrustRef, ix: CFIndex) -> SecCertificateRef;
pub fn SecTrustSetVerifyDate(trust: SecTrustRef, verifyDate: CFDateRef) -> OSStatus;
pub fn SecTrustSetAnchorCertificates(
trust: SecTrustRef,
anchorCertificates: CFArrayRef,
) -> OSStatus;
pub fn SecTrustSetAnchorCertificatesOnly(
trust: SecTrustRef,
anchorCertificatesOnly: Boolean,
) -> OSStatus;
#[cfg(target_os = "macos")]
pub fn SecTrustCopyAnchorCertificates(anchors: *mut CFArrayRef) -> OSStatus;
#[deprecated(note = "deprecated by Apple")]
pub fn SecTrustEvaluate(trust: SecTrustRef, result: *mut SecTrustResultType) -> OSStatus;
#[cfg(any(feature = "OSX_10_13", target_os = "ios", target_os = "tvos", target_os = "watchos", target_os = "visionos"))]
pub fn SecTrustEvaluateWithError(trust: SecTrustRef, error: *mut CFErrorRef) -> bool;
pub fn SecTrustCreateWithCertificates(
certificates: CFTypeRef,
policies: CFTypeRef,
trust: *mut SecTrustRef,
) -> OSStatus;
pub fn SecTrustSetPolicies(trust: SecTrustRef, policies: CFTypeRef) -> OSStatus;
#[cfg(target_os = "macos")]
pub fn SecTrustSetOptions(trust: SecTrustRef, options: SecTrustOptionFlags) -> OSStatus;
pub fn SecTrustGetNetworkFetchAllowed(trust: SecTrustRef, allowFetch: *mut Boolean) -> OSStatus;
pub fn SecTrustSetNetworkFetchAllowed(trust: SecTrustRef, allowFetch: Boolean) -> OSStatus;
pub fn SecTrustSetOCSPResponse(trust: SecTrustRef, responseData: CFTypeRef) -> OSStatus;
#[cfg(any(feature = "OSX_10_14", target_os = "ios", target_os = "tvos", target_os = "watchos", target_os = "visionos"))]
pub fn SecTrustSetSignedCertificateTimestamps(
trust: SecTrustRef,
sctArray: CFArrayRef,
) -> OSStatus;
pub fn SecTrustCopyPublicKey(trust: SecTrustRef) -> SecKeyRef;
}