SecTrustCopyPolicies(_:_:)
Retrieves the policies used by a given trust management object.
Declaration
func SecTrustCopyPolicies(_ trust: SecTrust, _ policies: UnsafeMutablePointer<CFArray?>) -> OSStatusParameters
Return Value
A result code. See Security Framework Result Codes.
Discussion
It is safe to call this function concurrently on two or more threads as long as it is not used to get values from a trust management object that is simultaneously being changed by another function. For example, you can call this function on two threads at the same time, but not if you are simultaneously calling the SecTrustSetPolicies(_:_:) function for the same trust management object on another thread.