RGLSignerInfo
Objective-C
@interface RGLSignerInfo : NSObject
@property(nonatomic, strong, readonly, nonnull) NSString *dataToHash;
@property(nonatomic, strong, readonly, nonnull) NSString *digestAlgorithm;
@property(nonatomic, assign, readonly) double paStatus;
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithm;
@property(nonatomic, assign, readonly) NSInteger version;
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuer;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *serialNumber;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *signature;
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *signedAttributes;
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *subjectKeyIdentifier;
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLCertificateChain *> *certificateChain;
/// The list of remarks occured during the scanning procedure.
///
/// Each element is a `NSNumber` containing a `NSUInteger`, that belongs to the `enum eLDS_ParsingErrorCodes`
@property(nonatomic, strong, readonly, nonnull) NSArray <NSNumber *> *notifications;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json;
- (NSDictionary *_Nonnull)jsonDictionary;
@end
Swift
class SignerInfo : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *dataToHashSwift
var dataToHash: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *digestAlgorithmSwift
var digestAlgorithm: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) double paStatusSwift
var paStatus: Double { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSString *signatureAlgorithmSwift
var signatureAlgorithm: String { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign, readonly) NSInteger versionSwift
var version: Int { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLAuthority *issuerSwift
var issuer: RGLAuthority { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *serialNumberSwift
var serialNumber: RGLRFIDValue { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *signatureSwift
var signature: RGLRFIDValue { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *signedAttributesSwift
var signedAttributes: [RGLExtension] { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *subjectKeyIdentifierSwift
var subjectKeyIdentifier: RGLRFIDValue { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, readonly, nonnull) NSArray <RGLCertificateChain *> *certificateChainSwift
var certificateChain: [RGLCertificateChain] { get } -
The list of remarks occured during the scanning procedure.
Each element is a
NSNumbercontaining aNSUInteger, that belongs to theenum eLDS_ParsingErrorCodesDeclaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) NSArray<NSNumber *> *notifications;Swift
var notifications: [NSNumber] { 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]