PPOTPinnedCertificates.h 451 B

12345678910111213141516171819202122
  1. //
  2. // PPOTPinnedCertificates.h
  3. // PayPalOneTouch
  4. //
  5. // Copyright © 2015 PayPal, Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /**
  9. Manages the pinned certificates for PayPal payments
  10. */
  11. @interface PPOTPinnedCertificates : NSObject
  12. /**
  13. Returns the set of trusted root certificates
  14. @return An array of trusted certificates encoded in the DER format, encapsulated in NSData objects.
  15. */
  16. + (NSArray *)trustedCertificates;
  17. @end