Skip to content

Commit

Permalink
Fix API links
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Dec 23, 2015
1 parent be4c1fd commit 8442a72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/argon2/_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def hash_password(password, salt=None,
Legacy alias for :func:`hash_secret` with default parameters.
.. deprecated:: 16.0.0
Use :class:`PasswordHasher` for passwords.
Use :class:`argon2.PasswordHasher` for passwords.
"""
if salt is None:
salt = os.urandom(DEFAULT_RANDOM_SALT_LENGTH)
Expand All @@ -47,7 +47,7 @@ def hash_password_raw(password, salt=None,
Legacy alias for :func:`hash_secret_raw` with default parameters.
.. deprecated:: 16.0.0
Use :class:`PasswordHasher` for passwords.
Use :class:`argon2.PasswordHasher` for passwords.
"""
if salt is None:
salt = os.urandom(DEFAULT_RANDOM_SALT_LENGTH)
Expand All @@ -61,6 +61,6 @@ def verify_password(hash, password, type=Type.I):
Legacy alias for :func:`verify_secret` with default parameters.
.. deprecated:: 16.0.0
Use :class:`PasswordHasher` for passwords.
Use :class:`argon2.PasswordHasher` for passwords.
"""
return verify_secret(hash, password, type)

0 comments on commit 8442a72

Please sign in to comment.