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 *dataToHash

    Swift

    var dataToHash: String { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSString *digestAlgorithm

    Swift

    var digestAlgorithm: String { 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 *signatureAlgorithm

    Swift

    var signatureAlgorithm: String { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger version

    Swift

    var version: Int { 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) RGLRFIDValue *serialNumber

    Swift

    var serialNumber: RGLRFIDValue { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *signature

    Swift

    var signature: RGLRFIDValue { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSArray <RGLExtension *> *signedAttributes

    Swift

    var signedAttributes: [RGLExtension] { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) RGLRFIDValue *subjectKeyIdentifier

    Swift

    var subjectKeyIdentifier: RGLRFIDValue { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) NSArray <RGLCertificateChain *> *certificateChain

    Swift

    var certificateChain: [RGLCertificateChain] { get }
  • The list of remarks occured during the scanning procedure.

    Each element is a NSNumber containing a NSUInteger, that belongs to the enum eLDS_ParsingErrorCodes

    Declaration

    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]