beefish

Software Screenshot:
beefish
Software Details:
Version: 0.1.1
Upload Date: 20 Feb 15
Developer: Charles Leifer
Distribution Type: Freeware
Downloads: 3

Rating: nan/5 (Total Votes: 0)

beefish is a Python module that provides easy file encryption for Python, with the help of pycrypto.

Installing

pip install beefish pycrypto

Alternatively:

pip install -e git+git://github.com/coleifer/beefish.git#egg=beefish

Usage

beefish can be used to encrypt and decrypt file-like objects:

from beefish import encrypt, decrypt

# encrypting
with open('secrets.txt') as fh:
 with open('secrets.enc', 'wb') as out_fh:
 encrypt(fh, out_fh, 'secret p@ssword')

# decrypting
with open('secrets.enc') as fh:
 with open('secrets.dec', 'wb') as out_fh:
 decrypt(fh, out_fh, 'secret p@ssword')

you can use a shortcut if you like:

# encrypting
encrypt_file('secrets.txt', 'secrets.enc', 'p@ssword')

# decrypting
decrypt_file('secrets.enc', 'secrets.dec', 'p@ssword')

you can use it from the command-line:

beefish.py -e secrets.txt secrets.enc
beefish.py -d secrets.enc secrets.dec

Requirements:

  • Python
  • pycrypto

Other Software of Developer Charles Leifer

peewee
peewee

20 Jul 15

django-news
django-news

11 May 15

Comments to beefish

Comments not found
Add Comment
Turn on images!