Metadata-Version: 2.1
Name: keylocker
Version: 0.1.5
Summary: Library with the CLI to save the encrypted secrets in the configuration file, but a transparent read and write the new settings in the app.
License: MIT
Author: vpuhoff
Author-email: vpuhoff@live.ru
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: cryptography (>=2.7,<3.0)
Requires-Dist: fire (>=0.1.3,<0.2.0)
Requires-Dist: pickleDB (>=0.9.2,<0.10.0)
Description-Content-Type: text/markdown

# Keylocker CLI
Library with the CLI to save the encrypted secrets in the configuration file, but a transparent read and write the new settings in the app.

## Simple usage in CLI:
> keylocker generate-key
> keylocker list
> keylocker read <keyname>
> keylocker remove <keyname>
> xkeylocker write <keyname> <value>

## Simple usage in code:
> from keylocker import Storage
> secrets = Storage()
> print(secrets['test'])
