Encryption tool for application configs.
Project description
Almost all applications have configuration of some kind, and often this config is sensitive - database passwords, SMTP account details, API keys etc.
These days it’s common to use public source control; which means you can no longer store your application’s sensitive config with your code.
Sesame provides a simple way to encrypt (and decrypt) your application’s config so it can be safely stored in public source control.
Cryptography
Sesame leans on a little known project called keyczar, which was originally built by members of the Google Security Team.
Keyczar in turn builds upon pycrypto which aims to provide sane defaults for your Python crypto.
Installation
To install sesame, simply:
$ pip install --pre sesame
Since pip version 1.4 the --pre parameter is necessary since keyczar is still an alpha release. People using earlier versions of pip can omit the --pre.
Usage
The interface to Sesame intentionally resembles that of tar. There are only two sub-commands: encrypt and decrypt as described below:
usage: sesame encrypt [-h] [-k KEYFILE] [-f]
outputfile inputfile [inputfile ...]
positional arguments:
outputfile Encrypted file to be created
inputfile Files to be encrypted
optional arguments:
-h, --help show this help message and exit
-k KEYFILE, --keyfile KEYFILE
Path to keyczar encryption key
-f, --force Force overwrite of existing encrypted file
usage: sesame decrypt [-h] [-k KEYFILE] [-f] [-O OUTPUT_DIR] [-T] inputfile
positional arguments:
inputfile File to be decrypted
optional arguments:
-h, --help show this help message and exit
-k KEYFILE, --keyfile KEYFILE
Path to keyczar encryption key
-f, --force Force overwrite of existing decrypted file
-O OUTPUT_DIR, --output-dir OUTPUT_DIR
Extract files into a specific directory
-T, --try-all Search for keys from current directory and try all of
them
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sesame-0.3.3.tar.gz
.
File metadata
- Download URL: sesame-0.3.3.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bb1c56dbe1241c898b64aa25caff9d5c28e788006dfc8816b2b6dcda0ca7e73 |
|
MD5 | 2713f63d7fe76be3fcf12c2ff9d9dd76 |
|
BLAKE2b-256 | 1974c05b56c44d979e2ac4a7e6b98c1a281fbc8988f6867efc98697b4ca88fdc |