Skip to main content

Encryption at rest made easy

Project description

Encryption at rest made easy

cf-crypt is a package to help you keep all you data resting on disk secure. It make encrypting your data at rest as easy as reading and writing from a file.

>>> from cfcrypt import CryptFileTextIO
>>> with CryptFileTextIO('./my_file.crpt', 'w', encryption_key, identity_key) as fh:
...         fh.write('Super secret, secret squirrel plans.')

Install

Install the package from pypi.org/project/cf-crypt using pip

$ python -m pip install cf-crypt
[...]
Successfully installed cf-crypt

Quick Start

Generate Keys

These keys are generated securely in memory.

Like all in memory variables they will disappear when your script ends. We really need our keys to stick around for as long as we want to decrypt our data.

>>> from cfcrypt.rsa.key_helpers import generate_private_key
>>> encryption_key = generate_private_key()
>>> identity_key = generate_private_key()

Save Keys

Keys can be serialized to the PEM format and saved to disk.

>>> from cfcrypt.rsa.key_helpers import private_key_to_pem_file
>>> private_key_to_pem_file('./my_encryption_key.pem', encryption_key)
>>> private_key_to_pem_file('./my_identity_key.pem', identity_key)

These PEM files are quite literally the keys to your data.

Load Keys

If you set a password on the PEM files you will need it to load them from disk.

>>> from cfcrypt.rsa.key_helpers import pem_file_to_private_key
>>> encryption_key = pem_file_to_private_key('./my_encryption_key.pem')
>>> identity_key = pem_file_to_private_key('./my_identity_key.pem')

Encrypt

Encryption is really easy, just use CryptFileTextIO like a regular file interface.

>>> from cfcrypt import CryptFileTextIO
>>> with CryptFileTextIO('./my_file.crpt', 'w', encryption_key, identity_key) as fh:
...         fh.write('Super secret, secret squirrel plans.')

Decrypt

Decryption is also really easy, just use CryptFileTextIO like a regular file interface.

>>> from cfcrypt import CryptFileTextIO
>>> with CryptFileTextIO('./my_file.crpt', 'r', encryption_key, identity_key) as fh:
...     data = fh.read()
>>> data
'Super secret, secret squirrel plans.'

More…

There are a bunch of other useful encryption related tools in the module. See the documentation (cf-crypt.readthedocs.io/en/latest) for details.

  • String encryption

  • Python object serialization + encryption

  • RSA signing & verification

  • File & folder encryption

  • Key management.

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

cf-crypt-0.1.1.tar.gz (9.2 MB view details)

Uploaded Source

Built Distribution

cf_crypt-0.1.1-py3-none-any.whl (26.2 kB view details)

Uploaded Python 3

File details

Details for the file cf-crypt-0.1.1.tar.gz.

File metadata

  • Download URL: cf-crypt-0.1.1.tar.gz
  • Upload date:
  • Size: 9.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.5 CPython/3.8.9 Linux/5.4.72-microsoft-standard-WSL2

File hashes

Hashes for cf-crypt-0.1.1.tar.gz
Algorithm Hash digest
SHA256 818080f5966dfc1969c181cafad5b20530dee553d29a70ef163a3a2bf5dbe995
MD5 1145aa8919e812e372fca45ee8a08590
BLAKE2b-256 127911a0201bd5115558799de67f664a6092590c4d4321beabbcb208f7465a2f

See more details on using hashes here.

File details

Details for the file cf_crypt-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: cf_crypt-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 26.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.5 CPython/3.8.9 Linux/5.4.72-microsoft-standard-WSL2

File hashes

Hashes for cf_crypt-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 82ae1b13216c01c2021b0265bc2fd5ca044a877942a8e52c038b648c0925df33
MD5 dff607ed1a79d1337c1fcf8197860fcf
BLAKE2b-256 0f99e6ee5add72ae19cb60362e6e6491d96972faaac62fc2b7e0c68f4c39d316

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page