aboutsummaryrefslogtreecommitdiff
path: root/QSThingsPlugin/Helpers/KeychainHelper.h
blob: d935beceb2d5a8acbcaeab6a7f61bde7b5660ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  KeychainHelper.h
//  Things Plugin
//
//  Created by Ruben Beltran del Rio on 2025-09-10.
//

#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