VerIDSecurityLevel

@objc
public enum VerIDSecurityLevel : Int

Authentication security level settings. Higher levels mean stricter authentication. Lower levels are more forgiving.

  • The most relaxed security. Legitimate users should have no difficulty authenticating. May authenticate an imposter.

    Declaration

    Swift

    case lowest
  • low

    Easy authentication.

    Declaration

    Swift

    case low
  • Balance of easy authentication and high security.

    Declaration

    Swift

    case normal
  • High security.

    Declaration

    Swift

    case high
  • Strictest security. Least likely to authenticate an imposter. Legitimate users may have difficulty authenticating.

    Declaration

    Swift

    case highest