| 12345678910111213141516171819202122 |
- //
- // PPOTPinnedCertificates.h
- // PayPalOneTouch
- //
- // Copyright © 2015 PayPal, Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- /**
- Manages the pinned certificates for PayPal payments
- */
- @interface PPOTPinnedCertificates : NSObject
- /**
- Returns the set of trusted root certificates
- @return An array of trusted certificates encoded in the DER format, encapsulated in NSData objects.
- */
- + (NSArray *)trustedCertificates;
- @end
|