ValidationResultStatus

@objc
public enum ValidationResultStatus : Int, CustomStringConvertible

ValidationResultStatusは、署名検証結果の状態を表すクラスです。

Cases

  • 有効

    Declaration

    Swift

    case VALID = 0
  • 署名値の検証に失敗

    Declaration

    Swift

    case INVALID_SIGNATURE = 1
  • 証明書の検証に失敗

    Declaration

    Swift

    case INVALID_CERTIFICATE = 2

Properties

  • インスタンスの説明を返します

    Declaration

    Swift

    public var description: String { get }
  • インスタンスの文字列表現を返します

    Declaration

    Swift

    public var stringValue: String { get }
  • 対応するInt型の値を返します

    Remark

    rawValueと同じ値を返します

    Declaration

    Swift

    public var status: Int { get }