blob: 3665377dc8dfc41b37c6b060ed52dcadcf990150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import "Constants.h"
#import <Foundation/Foundation.h>
#import <Security/Security.h>
NS_ASSUME_NONNULL_BEGIN
@interface KeychainHelper : NSObject
+ (NSString *)authenticationKey;
+ (OSStatus)setAuthenticationKey:(NSString *)authenticationKey;
+ (OSStatus)deleteAuthenticationKey;
@end
NS_ASSUME_NONNULL_END
|