JXKeyChainStore.h 409 B

123456789101112131415161718192021
  1. //
  2. // JXKeyChainStore.h
  3. // shiku_im
  4. //
  5. // Created by IMAC on 2019/8/21.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXKeyChainStore : NSObject
  11. + (void)save:(NSString*)service data:(id)data;
  12. + (id)load:(NSString*)service;
  13. + (void)deleteKeyData:(NSString*)service;
  14. + (NSString *)getUUIDByKeyChain;
  15. @end
  16. NS_ASSUME_NONNULL_END