mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
373 B
Objective-C
16 lines
373 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MTPKCS : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSString *issuerName;
|
|
@property (nonatomic, strong, readonly) NSString *subjectName;
|
|
@property (nonatomic, strong, readonly) NSData *data;
|
|
|
|
+ (MTPKCS * _Nullable)parse:(const unsigned char *)buffer size:(int)size;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|