AFSecurityPolicy Class Reference
Inherits from | NSObject |
Declared in | AFSecurityPolicy.h AFSecurityPolicy.m |
Overview
AFSecurityPolicy
evaluates server trust against pinned X.509 certificates and public keys over secure connections.
Adding pinned SSL certificates to your app helps prevent man-in-the-middle attacks and other vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged to route all communication over an HTTPS connection with SSL pinning configured and enabled.
Tasks
Other Methods
-
SSLPinningMode
property -
validatesCertificateChain
property -
pinnedCertificates
property -
allowInvalidCertificates
property -
validatesDomainName
property
Getting Specific Security Policies
Initialization
Evaluating Server Trust
Properties
SSLPinningMode
The criteria by which server trust should be evaluated against the pinned SSL certificates. Defaults to AFSSLPinningModeNone
.
@property (nonatomic, assign) AFSSLPinningMode SSLPinningMode
Declared In
AFSecurityPolicy.h
allowInvalidCertificates
Whether or not to trust servers with an invalid or expired SSL certificates. Defaults to NO
.
@property (nonatomic, assign) BOOL allowInvalidCertificates
Declared In
AFSecurityPolicy.h
pinnedCertificates
The certificates used to evaluate server trust according to the SSL pinning mode. By default, this property is set to any (.cer
) certificates included in the app bundle.
@property (nonatomic, strong) NSArray *pinnedCertificates
Declared In
AFSecurityPolicy.h
Class Methods
Instance Methods
evaluateServerTrust:
Whether or not the specified server trust should be accepted, based on the security policy.
- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust
Parameters
- serverTrust
The X.509 certificate trust of the server.
Return Value
Whether or not to trust the server.
Discussion
This method should be used when responding to an authentication challenge from a server.
Warning: This method has been deprecated in favor of evaluateServerTrust:forDomain:
.
Declared In
AFSecurityPolicy.h
evaluateServerTrust:forDomain:
Whether or not the specified server trust should be accepted, based on the security policy.
- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust forDomain:(NSString *)domain
Parameters
- serverTrust
The X.509 certificate trust of the server.
- domain
The domain of serverTrust. If
nil
, the domain will not be validated.
Return Value
Whether or not to trust the server.
Discussion
This method should be used when responding to an authentication challenge from a server.
Declared In
AFSecurityPolicy.h