Skip to content

KeepSafe: A secure and user-friendly solution for storing and distributing sensitive information such as keys and passwords in your projects.

License

Notifications You must be signed in to change notification settings

muhammad-fiaz/keepsafe

Repository files navigation

Keepsafe: Securely store and distribute sensitive information like passwords and keys

PyPI Version PyPI Downloads License CodeQL Python Versions Issues Pull Requests Last Commit Contributors Sponsor

Table of Contents

Keepsafe is a Python library that helps you securely store and retrieve sensitive information like passwords, API keys, and other secrets. It uses encryption techniques to ensure that your sensitive data is safe, and only accessible using the correct master password or decryption key.

Features

  • Securely store and retrieve secrets (e.g., passwords, API keys).
  • Encryption based on Fernet and PBKDF2 for password-based key derivation.
  • Supports adding secrets using either the master password or decryption key.
  • Export secrets to .env files for use in applications.
  • Easily integrated into existing projects.

Installation

You can install keepsafe via pip from PyPI:

pip install keepsafe

Usage

Initialize a new file with a master password

First, create a Keepsafe object and initialize the file:

from keepsafe import KeepSafe

ks = KeepSafe("./secrets.keepsafe")
decryption_key = ks.initialize_file(password="your_master_password")

Add secrets

You can add secrets either using the master password or the decryption key:

ks.add_secret("api_key", "super_secret_api_key", password_or_decryption_key="your_master_password")
ks.add_secret("email_password", "super_secret_email_password", password_or_decryption_key=decryption_key)

Retrieve secrets

You can retrieve secrets using the master password or the decryption key:

api_key = ks.get_secret("api_key", password_or_decryption_key="your_master_password")
email_password = ks.get_secret("email_password", password_or_decryption_key=decryption_key)

print(f"API Key: {api_key}")
print(f"Email Password: {email_password}")

Export secrets to .env file

To unlock the file and export all secrets to a .env file:

ks.unlock(password="your_master_password", env_file_path=".env")

This will export the secrets into the .env file, where each secret will be written as KEY=VALUE.

Testing

To run tests, you can use pytest. This package includes basic tests to verify that the core functionality works as expected.

Run the tests with:

pytest

License

Keepsafe is distributed under the MIT License. See LICENSE for more information.

Contributing

We welcome contributions to Keepsafe! Before contributing, please make sure to read our Code of Conduct and follow the guidelines below to ensure a smooth collaboration process.

Please ensure you follow the Code of Conduct when contributing.

If you encounter any issues or need assistance, feel free to open an issue or contact the maintainers.

Thank you for your contributions!

Contact

For any issues, bugs, or feature requests, please open an issue on the GitHub repository.

Sponsor this project

 

Packages

No packages published

Languages