You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Locally, and published (from time to time), things work fine.
But in some cases, one can't use sign-up/log-in because the password hashing operations exceed the 10ms CPU limit on CF Workers free plan - a downside of relying on pure JS implementations for the hashing schemes.
The solutions are to:
upgrade to a paid plan (maybe?)
use a different password hashing/comparison library (fast & able to run on CF Workers)
skip password auth and use OAuth only
As it stands, though, option no.3 seems the way to go. 🙁
The text was updated successfully, but these errors were encountered:
Locally, and published (from time to time), things work fine.
But in some cases, one can't use sign-up/log-in because the password hashing operations exceed the 10ms CPU limit on CF Workers free plan - a downside of relying on pure JS implementations for the hashing schemes.
The solutions are to:
As it stands, though, option no.3 seems the way to go. 🙁
The text was updated successfully, but these errors were encountered: