diff --git a/rules/python/lang/weak_password_hash_argon2.yml b/rules/python/lang/weak_password_hash_argon2.yml index 2602704d..9eac211f 100644 --- a/rules/python/lang/weak_password_hash_argon2.yml +++ b/rules/python/lang/weak_password_hash_argon2.yml @@ -60,7 +60,7 @@ metadata: ``` - **Do** rely on the default Argon2 type (Argon2id) as it is the most secure. This ensures the highest level of security for password storage. ```python - ph = PasswordHasher() // defaults to Argon2id + ph = PasswordHasher() # defaults to Argon2id hash = ph.hash(user.password) ```