@interface NSURLRequest (NSURLRequestSSL)

@end

@implementation NSURLRequest (NSURLRequestSSL)

+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host {
    return YES;
}

@end