When using the Supabase auth sign in and sign up A...
# off-topic
e
When using the Supabase auth sign in and sign up APIs, should we be sending encrypted passwords or does Supabase encrypt for us? I'm not seeing anything in the docs about whether or not we should worry about that from the application level.
s
This should be plain text password that you send, the hashing happens on the server side
e
Sounds good. Thank you!