123456789101112131415161718192021 |
- /*
-
- configuration_utils.h
- TrustKit
-
- Copyright 2017 The TrustKit Project Authors
- Licensed under the MIT license, see associated LICENSE file for terms.
- See AUTHORS file for the list of project authors.
-
- */
- #import "TSKPinningValidatorCallback.h"
- #if __has_feature(modules)
- @import Foundation;
- #else
- #import <Foundation/Foundation.h>
- #endif
- // Figure out if a specific domain is pinned and retrieve this domain's configuration key; returns nil if no configuration was found
- NSString * _Nullable getPinningConfigurationKeyForDomain(NSString * _Nonnull hostname , NSDictionary<NSString *, TKSDomainPinningPolicy *> * _Nonnull domainPinningPolicies);
|