Skip to main content

Easily encrypt/decrypt bytes with password

Project description

About

Bytecrypt is a python package for easy data encryption / decryption with password.

Installation

pip install bytecrypt

Usage

Example 1

# main.py

from bytecrypt import *

# byte array
encrypted_data = encrypt_bytes(b"secret", b"password")
decrypted_data = decrypt_bytes(encrypted_data, b"password")

print("\nEncrypted data: " + str(encrypted_data.decode("utf-8")))
print("\nDecrypted data: " + str(decrypted_data.decode("utf-8")))
# output

$ python main.py

Encrypted data: gAAAAABnO7wzHm-WLv-s_fQgHRe_-0Al_CmzUU7XfZcRaRSBXbLy1j8Z97KhiY8nZbaHETyKSO_NuGQH1f73MMs58nrT7pxWJg==

Decrypted data: secret

Example 2 - encrypting / decrypting file contents

# files
encrypt_file("path/to/file/test.docx", b"testPassword")
decrypt_file("path/to/file/test.docx", b"testPassword")

encrypt_file("path/to/file/test.docx", b"testPassword", encrypt_filename=True)
decrypt_file("path/to/file/test.docx", b"testPassword", decrypt_filename=True)

# files in directory
encrypt_directory("path/to/directory", b"testPassword")
decrypt_directory("path/to/directory", b"testPassword")

encrypt_directory("path/to/directory", b"testPassword", encrypt_filename=True)
decrypt_directory("path/to/directory", b"testPassword", decrypt_filename=True)

Example 3 - command line usage

# encrypt file contents
bytecrypt -e -f "test_file.txt" -p "test123"

# decrypt file contents
bytecrypt -d -f "test_file.txt" -p "test123"

# encrypt file name and its contents
bytecrypt -e -f "test_file.txt" -efn -p "test123"

# decrypt file name and its contents
bytecrypt -d -f "EJHF2_1bf...FHJ=" -dfn -p "test123"

# encrypt/decrypt string
bytecrypt -e -str "test_string-1234" -p "test123"
bytecrypt -d -str "tYWHbf_...2dHSL=" -p "test123"

# encrypt/decrypt files in directory
bytecrypt -e -dir "test/directory1" -p "test123"
bytecrypt -d -dir "test/directory1" -p "test123"
bytecrypt -e -dir . -p "test123"
bytecrypt -e -dir . -p -efn "test123"
bytecrypt -d -dir . -p -dfn "test123"

Command line arguments:

-e      ;   --encrypt
-d      ;   --decrypt
-f      ;   --file
-dir    ;   --directory
-efn    ;   --encrypt_filename
-dfn    ;   --decrypt_filename
-str    ;   --string
-p      ;   --password

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

bytecrypt-0.2.1.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

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

bytecrypt-0.2.1-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file bytecrypt-0.2.1.tar.gz.

File metadata

  • Download URL: bytecrypt-0.2.1.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for bytecrypt-0.2.1.tar.gz
Algorithm Hash digest
SHA256 425fa6e7c4c12ac27a3fb15cc4a596546c0191e3347484ff9356f69232247f00
MD5 28be1c18b5b2f497b0da820d99147307
BLAKE2b-256 3b262773cd4565f3af416d717a87c7ba8a8d44fb7db42c5eb364d430b240e4ff

See more details on using hashes here.

File details

Details for the file bytecrypt-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: bytecrypt-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for bytecrypt-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d8379a63db7d5646c2fe2ba6e7d1e4aa0a533fef8e8fd372100a07dae68bd2fc
MD5 486652191636d2ebde40eb80dda06b32
BLAKE2b-256 126147747741ccb46b2e444654fb79c73648962ffe130e136bc9a29045fd54b5

See more details on using hashes here.

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