It seems like the password limit is set to 60 characters so I’m unable to login to my instance. There probably should be no limit in the app because each server could have different limits set.

    • woelkchen@lemmy.world
      link
      fedilink
      arrow-up
      10
      arrow-down
      2
      ·
      9 months ago

      Computers get faster all the time, making brute force cracking of passwords easier all the time. Password managers don’t care how long a password is. The task of filling it out is the same.

      • Yer Ma@lemm.ee
        link
        fedilink
        arrow-up
        6
        arrow-down
        3
        ·
        9 months ago

        60 character passwords with any amount of complexity would take effectively infinite time to brute, an 18 character password with complex characters would take millions of years… There is no reason to use 60, let alone more than

        • woelkchen@lemmy.world
          link
          fedilink
          arrow-up
          5
          arrow-down
          2
          ·
          9 months ago

          Why make excuses for maximum password lengths? Just let people decided on their own if they want 200 character passwords or not.

          • Yer Ma@lemm.ee
            link
            fedilink
            arrow-up
            4
            arrow-down
            2
            ·
            9 months ago

            Well, there could be very reasonable reasons for the limit, like keeping the hash tables sane, or keeping databases from needing unnecessary padding, but there really isn’t any reasonable reason for needing 60+ characters in passwords

            • woelkchen@lemmy.world
              link
              fedilink
              arrow-up
              4
              arrow-down
              2
              ·
              9 months ago

              Well, there could be very reasonable reasons for the limit, like keeping the hash tables sane, or keeping databases from needing unnecessary padding, but there really isn’t any reasonable reason for needing 60+ characters in passwords

              And how is this the duty of a client app to police that? OP says it’s about being able to log into their own instance and the client app is blocking this.

        • Amju Wolf@pawb.social
          link
          fedilink
          arrow-up
          2
          ·
          9 months ago

          Have you heard about pass phrases ?

          Also, none of those is a sane reason to limit password length. A huge point of hashing is having short, constant length strings on output no matter the input. There’s no limitation or database issue there.

          The only reason to limit password length is actually security (for bad algorithms) and DoS, but that requires a limit in the thousands.