Skip to main content

A python xxxFile like (ie GzipFile, BZ2File, ...) for manipulating Nacl encrypted files.

Project description

CircleCI codecov PyPI - Downloads

NaclFile

A python xxxFile like (ie TarFile, GzipFile, BZ2File, pyzstd.ZstdFile, ...) for encrypting files with PyNacl SecretBox.

This project is part of the CofferFile : https://github.com/bibi21000/CofferFile.

If you're looking for a more powerfull storage for your sensible datas, look at PyCoffer : https://github.com/bibi21000/PyCoffer.

Install

    pip install naclfile

Create your encryption key

    from nacl import utils

    key = utils.random(SecretBox.KEY_SIZE)

and store it in a safe place (disk, database, ...).

This key is essential to encrypt and decrypt data. Losing this key means losing the data.

"open" your encrypted files like normal files

Text files :

    from naclfile import open as nacl_open

    with nacl_open('test.nacl', mode='wt', secret_key=key, encoding="utf-8") as ff:
        ff.write(data)

    with nacl_open('test.nacl', "rt", secret_key=key, encoding="utf-8") as ff:
        data = ff.read()

    with nacl_open('test.nacl', mode='wt', secret_key=key, encoding="utf-8") as ff:
        ff.writelines(data)

    with nacl_open('test.nacl', "rt", secret_key=key, encoding="utf-8") as ff:
        data = ff.readlines()

Binary files :


    with nacl_open('test.nacl', mode='wb', secret_key=key) as ff:
        ff.write(data)

    with nacl_open('test.nacl', "rb", secret_key=key) as ff:
        data = ff.read()

Crypt and compress ... for better performances.

Look at https://github.com/bibi21000/CofferFile/blob/main/BENCHMARK.md.

    from naclfile.zstd import open as nacl_open

    with nacl_open('test.nacz', mode='wb', secret_key=key) as ff:
        ff.write(data)

    with nacl_open('test.nacz', "rb", secret_key=key) as ff:
        data = ff.read()

Crypt and compress your tar files

    from naclfile.tar import open as tar_open

    with tar_open('test.tarcz', mode='w', secret_key=key) as ff:
        ff.add(file1,'file1.data')
        ff.add(file2,'file2.data')

    with tar_open('test.tarcz', "r", secret_key=key) as ff:
        ff.extractall()

Look at documentation : https://bibi21000.github.io/NaclFile/

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

naclfile-0.0.5.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

naclfile-0.0.5-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file naclfile-0.0.5.tar.gz.

File metadata

  • Download URL: naclfile-0.0.5.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for naclfile-0.0.5.tar.gz
Algorithm Hash digest
SHA256 c8c39c3386617f41b8ac63a800cbe1a736e1f8d6d073f8d5c7aac6d3a08426ea
MD5 0e80d1b62e52b111782610e6409101d5
BLAKE2b-256 9d5e525df4df8a427f76453d4f44ed9d15c4e18748f459c2f2b7463ba7960405

See more details on using hashes here.

Provenance

The following attestation bundles were made for naclfile-0.0.5.tar.gz:

Publisher: python-publish.yml on bibi21000/NaclFile

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file naclfile-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: naclfile-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for naclfile-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 5343e85fc72971d78e9f1ece734e0525af2d28c2402753c82e846979c084f4b4
MD5 5b1eb8f2996ddb083b2499eddd12b191
BLAKE2b-256 8f1ebe6d022113a8a5e65c50fa35fd3cd59fb9dfe4cc31ca07a6b9a4b6289d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for naclfile-0.0.5-py3-none-any.whl:

Publisher: python-publish.yml on bibi21000/NaclFile

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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