Is there a max user password length in supabase? T...
# help
j
Is there a max user password length in supabase? The only thing I've found so far is the max password length for a project (which seems to be 99). I was curious if there was a similar limit for supabase auth users.
n
Hello @Jingly! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
g
I've not seen it documented, but this is what it is stored as in the auth.users table
Copy code
encrypted_password varchar(255) NULL,
So the encrypted version of the password is 255 char limit.
n
JinglySmith (2022-05-25)
j
Thank you!