PSPDFRSAKey

Objective-C

@interface PSPDFRSAKey : NSObject

PSPDF_EMPTY_INIT_UNAVAILABLE

/// The underlying public key scheme.
@property (nonatomic, readonly) NSString *publicKeyScheme;

/// Returns the approximate length of the security parameter. For example, for RSA this is the size of the modulus.
@property (nonatomic, readonly) NSInteger keyLength;

@end

Swift

class RSAKey : NSObject

Undocumented

  • Unavailable

    Not the designated initializer

    Undocumented

    Declaration

    Objective-C

    PSPDF_EMPTY_INIT_UNAVAILABLE
  • Unavailable

    Not the designated initializer

    Undocumented

    Declaration

    Objective-C

    PSPDF_EMPTY_INIT_UNAVAILABLE
  • The underlying public key scheme.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull publicKeyScheme;

    Swift

    var publicKeyScheme: String { get }
  • Returns the approximate length of the security parameter. For example, for RSA this is the size of the modulus.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger keyLength;

    Swift

    var keyLength: Int { get }