UtilityBelt v0.5.0 UtilityBelt.Password View Source

Use string password algorithm (Argon2 or Bcrypt) to encrypt(hash) the password. Argon2 is newer, stronger (use lots of memory to reduce the risk for GPU brutal force), Bcrypt is more matural and be considered as the most secure algo in past 15 years.

Link to this section Summary

Link to this section Functions

Link to this function check_argon2(password, encrypted_password) View Source
Link to this function check_bcrypt(password, encrypted_password) View Source
Link to this function encrypt_argon2(password) View Source
Link to this function encrypt_bcrypt(password) View Source