2019-09-22 00:06:59 +04:00

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