Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

find better way for password hashing #127

Open
beliaev-maksim opened this issue Jun 13, 2023 · 2 comments
Open

find better way for password hashing #127

beliaev-maksim opened this issue Jun 13, 2023 · 2 comments
Labels
enhancement New feature or request

Comments

@beliaev-maksim
Copy link
Member

we need to see if we can hash passwords with native python libs

try:
import bcrypt
except ImportError:
subprocess.check_call(["apt", "update"])
subprocess.check_call(["apt", "install", "-y", "python3-bcrypt"])
import bcrypt

@ca-scribner ca-scribner added the enhancement New feature or request label Jul 5, 2023
@alhama7a
Copy link
Contributor

@ca-scribner @beliaev-maksim I think this has already been taken care of by this commit.

@beliaev-maksim
Copy link
Member Author

@alhama7a no
It still uses external package dependency

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants