RGLCertificateChain
Objective-C
@interface RGLCertificateChain : NSObject
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *extensions;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *fileName;
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuer;
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications;
@property(nonatomic, assign, readonly) NSInteger origin;
@property(nonatomic, assign, readonly) double paStatus;
@property(nonatomic, strong, readonly, nonnull) NSString *serialNumber;
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithm;
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *subject;
@property(nonatomic, strong, readonly, nonnull) NSString *subjectPKAlgorithm;
@property(nonatomic, assign, readonly) RGLRFIDCertificateType type;
@property(nonatomic, strong, readonly, nonnull) RGLValidity *validity;
@property(nonatomic, assign, readonly) NSInteger version;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class CertificateChain : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *extensions
Swift
var extensions: [RGLExtension] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *fileName
Swift
var fileName: RGLRFIDValue { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuer
Swift
var issuer: RGLAuthority { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications
Swift
var notifications: [NSNumber] { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger origin
Swift
var origin: Int { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) double paStatus
Swift
var paStatus: Double { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *serialNumber
Swift
var serialNumber: String { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithm
Swift
var signatureAlgorithm: String { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *subject
Swift
var subject: RGLAuthority { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *subjectPKAlgorithm
Swift
var subjectPKAlgorithm: String { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) RGLRFIDCertificateType type
Swift
var type: RFIDCertificateType { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLValidity *validity
Swift
var validity: RGLValidity { get }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger version
Swift
var version: Int { get }
-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)init NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
Swift
init(json: [AnyHashable : Any])
-
Undocumented
Declaration
Objective-C
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
Swift
class func initWithJSON(_ json: [AnyHashable : Any]) -> Self
-
Undocumented
Declaration
Objective-C
- (NSDictionary *_Nonnull)jsonDictionary;
Swift
func jsonDictionary() -> [AnyHashable : Any]