Skip to content

Commit

Permalink
Change password_encryption to encrypt_password
Browse files Browse the repository at this point in the history
  • Loading branch information
zywkloo committed Jan 12, 2024
1 parent a8520c8 commit 53a545c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ This package provides password management tools in Python. The package consists
## List of functions
- password_creator
- password_strength
- password_encryption
- password_decryption
- encrypt_password
- decrypt_password

## Contributors
- Michelle Hunn
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def password_encryption(raw_password: str, encrypt_algo: list = ['AES']) -> str:
def encrypt_password(raw_password: str, encrypt_algo: list = ['AES']) -> str:
"""
Encrypt a given password.
Expand Down

0 comments on commit 53a545c

Please sign in to comment.