• dudeami0
    link
    fedilink
    English
    81 year ago

    Is there a reason you consider passwords longer than 60 characters an issue, or does the backend reject such passwords? In my experience, there should be no upper bound on password length except maybe in the order of request size being too large (say a password that is a several kilobytes).

    • Lionir [he/him]
      link
      fedilink
      English
      201 year ago

      The 60 character limit is not a problem imo, the problem is that they are truncated at 60 but the UI doesn’t tell you, this results in some problems.

    • @Xanvial
      link
      English
      8
      edit-2
      1 year ago

      Some password hashing methods has max characters length. For example Bcrypt has 72 max length. This is mostly to avoid taking too much time encrypting user input.

      If there’s no limit someone can technically froze the server by inputting large password (not because the request is big, but the process is exponentially takes more CPU process the longer characters it needs to compute)

    • Passwords “should” be hashed anyway, so I don’t understand why there’s a limit. Are they actually being stored as plaintext in a VARCHAR(60) column in the database? Please tell me that’s not happening.

      • rs5th
        link
        fedilink
        English
        41 year ago

        Just checked my own Lemmy postgres database, it’s a 12 round Bcrypt 2b hash.