Client Cert Auth Challenge for mTLS

When my URLSessionDelegate receives a server trust challenge (NSURLAuthenticationMethodServerTrust) and I respond with .useCredential for an enterprise self-signed cert, does the decision get cached for subsequent requests on the same URLSession, or is the delegate called again on every connection to the same host?

Answered by Frameworks Engineer in 891717022

The decision's not cached for subsequent requests, the delegate will get called again for new connections to the same host.

Accepted Answer

The decision's not cached for subsequent requests, the delegate will get called again for new connections to the same host.

Client Cert Auth Challenge for mTLS
 
 
Q