-
In 2021 it is urgent than ever to support Argon2. Unfortunately this very useful library doesn't support anyone of the modern password hashing algorithms like Argon2, bcrypt, scrypt, and PBKDF2. There…
absar updated
1 month ago
-
**Description:**
We need to implement the backend logic for user authentication, specifically for the login and registration functionalities. This will include setting up routes, controllers, and d…
-
Create a new FastAPI project.
Set up a database (e.g., PostgreSQL, SQLite) and define user models.
Implement password hashing using a library like bcrypt or argon2.
-
It might make sense to shift to the standard password hashing library bcrypt instead of using a custom salt. Cracking bcrypted passwords takes considerably more computing power than SHA1 does, which w…
-
### What is the feature you are proposing?
You know how we have bcrypt in the node/express environment? I was also searching for a similar alternative here but wasn't able to find one. I tried using …
-
Trough `fastapi-users`, we rely on `passlib` for password hashing. Despite being a mainstream library, this went unmantained (see e.g. https://github.com/fractal-analytics-platform/fractal-server/issu…
-
**Describe the feature request**
**Problem Statement:**
Budibase is a powerful low-code platform, but its current JavaScript scripting capabilities are limited. Users seeking to perform more adv…
-
This project uses [bcrypt-nodejs](https://www.npmjs.com/package/bcrypt-nodejs) library for hashing and salting user passwords. That library seems very outdated, to the point there's a notice on its NP…
-
The bcrypt package uses a DefaultCost of 10 which has not changed since its initial commit 10 years ago.
https://github.com/golang/crypto/blob/bc19a97f63c84bfb02ed9bb14fb0f8f6bec9a964/bcrypt/bcrypt.g…
-
Hello, I have correctly implemented RedisStore for OAuth2 server implementation based on this library. However, checking Redis, I noticed the client_id and secrets are being stored in plain text. How …