PSPDFSignatureStatusSeverity

Objective-C

enum PSPDFSignatureStatusSeverity : NSInteger {}

Swift

@frozen enum Severity : Int, @unchecked Sendable

Severity of a signature validation problem

  • The validation status does not contain any problem.

    Declaration

    Objective-C

    PSPDFSignatureStatusSeverityNone = 0

    Swift

    case none = 0
  • The validation status has some important but not blocker problems (ie. signed with a self-signed certificate).

    Declaration

    Objective-C

    PSPDFSignatureStatusSeverityWarning

    Swift

    case warning = 1
  • The validation status has some blocker problems. The signature should not be trusted.

    Declaration

    Objective-C

    PSPDFSignatureStatusSeverityError

    Swift

    case error = 2