mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-22 03:58:47 +00:00
15 lines
419 B
Objective-C
15 lines
419 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef MtProtoKitDynamicFramework
|
|
# import <MTProtoKitDynamic/MTKeychain.h>
|
|
#else
|
|
# import <MTProtoKit/MTKeychain.h>
|
|
#endif
|
|
|
|
@interface MTFileBasedKeychain : NSObject <MTKeychain>
|
|
|
|
+ (instancetype)unencryptedKeychainWithName:(NSString *)name documentsPath:(NSString *)documentsPath;
|
|
+ (instancetype)keychainWithName:(NSString *)name documentsPath:(NSString *)documentsPath;
|
|
|
|
@end
|