canonical/dex-auth-operator

find better way for password hashing

Opened this issue · 2 comments

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 @beliaev-maksim I think this has already been taken care of by this commit.

@alhama7a no
It still uses external package dependency