mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-04 10:30:42 +00:00
18 lines
475 B
Objective-C
18 lines
475 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <MtProtoKit/MTKeychain.h>
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MTFileBasedKeychain : NSObject <MTKeychain>
|
|
|
|
+ (instancetype)unencryptedKeychainWithName:(NSString * _Nullable)name documentsPath:(NSString *)documentsPath;
|
|
+ (instancetype)keychainWithName:(NSString * _Nullable)name documentsPath:(NSString * _Nullable)documentsPath;
|
|
|
|
- (NSDictionary<NSString *, id> *)contentsForGroup:(NSString *)group;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|