/* reporting_utils.h TrustKit Copyright 2015 The TrustKit Project Authors Licensed under the MIT license, see associated LICENSE file for terms. See AUTHORS file for the list of project authors. */ #if __has_feature(modules) @import Foundation; #else #import #endif #ifndef TrustKit_reporting_utils_h #define TrustKit_reporting_utils_h NSArray *convertTrustToPemArray(SecTrustRef serverTrust); NSArray *convertPinsToHpkpPins(NSSet *knownPins); #endif