PasswordStrength

public enum PasswordStrength : Int

The strength required for the password. The strength is measured on five simple criteria - lower case characters, upper case characters, numeric characters, special characters, and is more than 8 characters long. Each of these matched criteria moves the password strength of the string up one strength. Not having 8 character minimum reduces the string by one strength level.

  • Undocumented

    Declaration

    Swift

    case veryWeak
  • Undocumented

    Declaration

    Swift

    case weak
  • Undocumented

    Declaration

    Swift

    case medium
  • Undocumented

    Declaration

    Swift

    case strong
  • Undocumented

    Declaration

    Swift

    case veryStrong