VALSecureEnclaveValet_Protected.h 617 B

12345678910111213141516171819
  1. //
  2. // VALSecureEnclaveValet_Protected.h
  3. // Valet
  4. //
  5. // Created by Dan Federman on 1/23/17.
  6. // Copyright © 2017 Square, Inc. All rights reserved.
  7. //
  8. #import <Valet/VALValet.h>
  9. @interface VALSecureEnclaveValet ()
  10. - (nullable NSData *)objectForKey:(nonnull NSString *)key userPrompt:(nullable NSString *)userPrompt userCancelled:(nullable inout BOOL *)userCancelled options:(nullable NSDictionary *)options;
  11. - (nullable NSString *)stringForKey:(nonnull NSString *)key userPrompt:(nullable NSString *)userPrompt userCancelled:(nullable inout BOOL *)userCancelled options:(nullable NSDictionary *)options;
  12. @end