mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-03 19:30:09 +00:00
17 lines
503 B
Objective-C
17 lines
503 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#if defined(MtProtoKitDynamicFramework)
|
|
# import <MTProtoKitDynamic/MTKeychain.h>
|
|
#elif defined(MtProtoKitMacFramework)
|
|
# import <MTProtoKitMac/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
|