======
NEW
---
- api-keychain store: core functionality to store an API key in your encrypted keychain.
- api-keychain retrieve: core functionality for retrieving a specified API key out of the keychain.
- crypto: built-in functionality to encrypt and decrypt your API keys so that they are secure sitting inside the keychain. More details below.
- keychain.dat: an auto-generated keychain file that stores all of your API keys in a json format. Don't worry though, your crucial keys are securely encrypted!
- added `cryptography <https://pypi.org/project/cryptography/>`_ and `passlib <https://pypi.org/project/passlib/>`_ as dependencies.
- For developers, requires sphinx and pytest as dev dependencies.
Crypto breakdown
----------------
This is the big one. The crypto functions work by using a secure password you create when generating the keychain. The password is secured using industry-standard algorithms and
is used to "open" the keychain when trying to retrieve a key. For those interested, you have the source code at hand in the repo and can explore the crypto module to learn how it
works, or come find me on Discord!