Contents

SecTrustSetVerifyDate(_:_:)

Sets the date and time against which the certificates in a trust management object are verified.

Declaration

func SecTrustSetVerifyDate(_ trust: SecTrust, _ verifyDate: CFDate) -> OSStatus

Parameters

  • trust:

    The trust management object whose verification date you want to set. A trust management object includes one or more certificates plus the policy or policies to be used in evaluating trust. Use the Sectrustcreatewithcertificates(_:_:_:) function to create a trust management object.

  • verifyDate:

    The date and time to use when verifying the certificate.

Mentioned in

Return Value

A result code. See Security Framework Result Codes.

Discussion

By default, the SecTrustEvaluateWithError(_:_:) function uses the current date and time when verifying a certificate. However, you can use SecTrustSetVerifyDate to set another date and time to use when verifying a certificate. For example, you can determine whether the certificate was valid when the document was signed rather than whether it’s valid at the present time.

It is safe to call this function concurrently on two or more threads as long as it is not used to change the value of a trust management object that is simultaneously being used by another function. For example, you cannot call this function on one thread at the same time as you are calling the evaluation function for the same trust management object on another thread, but you can call this function and simultaneously evaluate a different trust management object on another thread. Similarly, calls to functions that return information about a trust management object (such as the SecTrustCopyCustomAnchorCertificates(_:_:) function) may fail or return an unexpected result if this function is simultaneously changing the same trust management object on another thread.

See Also

Related Documentation