passwordHashOrder property

String? passwordHashOrder
getter/setter pair

Password and salt order when verify password. Possible string values are:

  • "UNSPECIFIED_ORDER" : The order is not specified.
  • "SALT_AND_PASSWORD" : The order is salt first, and then password.
  • "PASSWORD_AND_SALT" : The order is password first, and then salt.

Implementation

core.String? passwordHashOrder;