43 lines
1.2 KiB
Objective-C
43 lines
1.2 KiB
Objective-C
//
|
|
// Copyright 2012 Square Inc.
|
|
// Portions Copyright (c) 2016-present, Facebook, Inc.
|
|
//
|
|
// All rights reserved.
|
|
//
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
|
|
#import "NSURLRequest+SRWebSocket.h"
|
|
#import "NSURLRequest+SRWebSocketPrivate.h"
|
|
|
|
// Required for object file to always be linked.
|
|
void import_NSURLRequest_SRWebSocket() { }
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
static NSString *const SRSSLPinnnedCertificatesKey = @"SocketRocket_SSLPinnedCertificates";
|
|
|
|
@implementation NSURLRequest (SRWebSocket)
|
|
|
|
- (nullable NSArray *)SR_SSLPinnedCertificates
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSMutableURLRequest (SRWebSocket)
|
|
|
|
- (void)setSR_SSLPinnedCertificates:(nullable NSArray *)SR_SSLPinnedCertificates
|
|
{
|
|
[NSException raise:NSInvalidArgumentException
|
|
format:@"Using pinned certificates is neither secure nor supported in SocketRocket, "
|
|
"and leads to security issues. Please use a proper, trust chain validated certificate."];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|