zdk.objc
ZDKSecureCertData.h
1//
2// ZDKSecureCertData.h
3// ZDK
4//
5
6#ifndef ZDKSecureCertData_h
7#define ZDKSecureCertData_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKZHandle.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
15
24@property(nonatomic, readonly) int errorMask;
25
30@property(nonatomic, readonly) NSString* certSubject;
31
36@property(nonatomic, readonly) NSString* certIssuer;
37
42@property(nonatomic, readonly) NSString* certNotBefore;
43
48@property(nonatomic, readonly) NSString* certNotAfter;
49
59@property(nonatomic, readonly) NSString* expectedName;
60
69@property(nonatomic, readonly) NSString* actualNameList;
70
77@property(nonatomic, readonly) NSString* certDataPEM;
78
79-(NSString*)handlesDescription;
80
81@end
82
83NS_ASSUME_NONNULL_END
84
85#endif
Definition: ZDKSecureCertData.h:14
NSString * certIssuer
Gets the certificate's issuer.
Definition: ZDKSecureCertData.h:36
NSString * certNotAfter
Gets the certificate's end of validity.
Definition: ZDKSecureCertData.h:48
NSString * certSubject
Gets the certificate's subject.
Definition: ZDKSecureCertData.h:30
NSString * actualNameList
Gets the actual certificate names list.
Definition: ZDKSecureCertData.h:69
NSString * certNotBefore
Gets the certificate's start of validity.
Definition: ZDKSecureCertData.h:42
int errorMask
Gets the mask of errors for the certificate.
Definition: ZDKSecureCertData.h:24
NSString * expectedName
Gets the expected subject name for the certificate.
Definition: ZDKSecureCertData.h:59
NSString * certDataPEM
Gets the certificate itself.
Definition: ZDKSecureCertData.h:77
Definition: ZDKZHandle.h:13