This password manager program provides a baseline to interact with various functions created in different modules, including encryption, password generation, and password group management. It demonstrates the capabilities of managing and securing passwords through a command-line interface.
Elliot Yun
2024-06-18
1.0.1
- Password Generation: Generate passwords either randomly or based on given strings.
- Password Management: Create, search, and delete password groups and passwords within those groups.
- AES Encryption: Encrypt and decrypt passwords using AES encryption.
This module provides the main interface for interacting with the password manager.
To run the main module, simply execute it:
import encrypter
import manager
import generator
def main():
# Interact with the password manager and demonstrate its capabilities
# For detailed usage, refer to the example provided below in the main file
if __name__ == "__main__":
main()
This module provides functions to encrypt and decrypt passwords using AES encryption.
- encrypt(password): Encrypts a password using AES encryption.
- decrypt(encryption): Decrypts an encrypted password.
To encrypt a password:
result = encrypter.encrypt("my_password")
print(result)
To decrypt a password:
original = encrypter.decrypt(result)
print(original)
This module provides functions to generate passwords, either randomly or based on given keywords, and to return a user-provided password.
- generate(length): Creates a random password of arbitrary length.
- generate_with_string(input_string): Generates a password based on given keywords.
- regular_password(password): Returns the password provided by the user.
To generate a random password:
password = generator.generate(14)
print(password)
To generate a password based on keywords:
password = generator.generate_with_string("example keyword")
print(password)
To return a user-provided password:
password = generator.regular_password("user_password")
print(password)
This module provides functions to manage password groups, including creating, searching, deleting groups, and adding, searching, deleting passwords within those groups.
- print_manager(): Prints the current password manager list.
- create_group(group_name): Creates a storage object called a 'group' that has a dictionary for passwords and a purpose for the password.
- search_group(group_name): Searches for a specific group in the manager.
- delete_group(group_name): Deletes a specified group from the manager.
- add_pass(group_name, id, new_pass): Adds a password to the password group.
- search_id(group_name, id): Searches for a specific password id within a given group.
- delete_pass(group_name, del_id): Deletes a password from a specific given group.
To create a new password group:
manager.create_group("First")
To add a password to a group:
manager.add_pass("First", "mypassword", "password_value")
To search for a password group:
manager.search_group("First")
To delete a password from a group:
manager.delete_pass("First", "mypassword")
To run the main program and see the full demonstration of the password manager's capabilities, execute the main
function in the main module.
The functions exist to be used however you want. The main file is just a demonstration of what you can do.
python main.py
This project has no license
The main program demonstrates how to generate, manage, and secure passwords. It integrates all the functionalities from the encryption, generator, and manager modules to provide a comprehensive password management solution. Enjoy managing your passwords securely!