"A simple encrypted key storage, now with a simple throttler (using Redis)"
Project description
simple_keystore
This is a simple key storage solution for development or on-prem use. Use secrets/other builtin more-secure provider methods for production.
Uses an SQLite database to store/retrieve encrypted keys with metadata including expiration dates.
Uses Redis to throttle key usage.
There is a Dockerfile included, and .devcontainer for use with VSCode.
Requirements
If you are going to use the throttler (SKSRateThrottler), you will need Redis. This is not necessary if just using SimpleKeystore.
sudo apt-get install -y redis-server
sudo service redis-server start
Installation
pip install simple_keystore
Usage
You can set the encryption key either via environment variable or as an entry in your .netrc where the password is the key and machine is SIMPLE_KEYSTORE_KEY
export SIMPLE_KEYSTORE_KEY = "myencryptionkeyphrase"
Create an SQLite DB to store keys in python:
ks = SimpleKeyStore(KEYSTORE_FILE_NAME)
# See tests/test_simple_keystore.py for adding keys, etc.
Add/Remove keys manually / intractively in bash with:
manage_simple_keys <KEYSTORE_FILE_NAME>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_keystore-0.4.0.tar.gz.
File metadata
- Download URL: simple_keystore-0.4.0.tar.gz
- Upload date:
- Size: 18.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.3 CPython/3.10.16 Linux/5.15.167.4-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5fb0845d253edf590b38d3d1d441837eafabca6c5cc56ab2ae3d895d17e9afb
|
|
| MD5 |
fb8c2b285dd7163723a5cc39fc2b51f4
|
|
| BLAKE2b-256 |
664ecd0ae1d06a6221374020f52e5b4fa0840d5bb18c657d2e3867c36be1bc3f
|
File details
Details for the file simple_keystore-0.4.0-py3-none-any.whl.
File metadata
- Download URL: simple_keystore-0.4.0-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.3 CPython/3.10.16 Linux/5.15.167.4-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d48594a46c41cb57bc00af79bdda2ab7448224ff3d69b3997a93812575d6d18d
|
|
| MD5 |
fd01bccfa691ad84dfdf07c478d78c8b
|
|
| BLAKE2b-256 |
fef0f07b34c6bb1e3f00e9def3c120c7bd76fd3e563321cd57da0f8654a355bb
|