酷店

SecurityStorage.h 382B

1234567891011121314151617181920
  1. //
  2. // SecurityStorage.h
  3. // SecurityGuardSDK
  4. //
  5. // Created by lifengzhong on 15/1/19.
  6. // Copyright (c) 2015年 Li Fengzhong. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface SecurityStorage : NSObject
  10. + (NSInteger) putString: (NSString*) value key: (NSString*) key;
  11. + (NSString*) getString: (NSString*) key;
  12. + (void) removeString: (NSString*) key;
  13. @end