diff --git a/src/passwordler/decrypt_password.py b/src/passwordler/decrypt_password.py index 34ffcc8..f9e3499 100644 --- a/src/passwordler/decrypt_password.py +++ b/src/passwordler/decrypt_password.py @@ -2,7 +2,10 @@ def decrypt_password(password, key): """ Decrypt an encrypted password. - This function decrypts an encrypted string. It supports the Advanced Encryption Standard (AES) encryption, which is widely used to secure sensitive data. Employing the provided key, the function decrypts the password, ensuring it matches the encryption algorithm applied during the encryption process. The function returns the original, human-readable password. + This function decrypts an encrypted string. It supports the Advanced Encryption Standard (AES) + encryption, which is widely used to secure sensitive data. Employing the provided key, the + function decrypts the password, ensuring it matches the encryption algorithm applied during the + encryption process. The function returns the original, human-readable password. Parameters: password (bytes): The encrypted password to be decrypted.