Skip to main content

A pure python implementation of DES

Project description

DES-Python

made-with-python license: AGPL-3.0 DES-Python

Data Encryption Standard (DES) implemented in pure Python

Demo

Features

  • Encryption and Decryption
  • PKCS5 Padding
  • ECB Mode of Operation
  • Hex String and Bytes Object Support

Installation

Install using your Python package manager of choice:

pip install des_PurePy

Usage

Encrypting Hex Strings

Define a DES object while passing in your key. The key can be a hex string or a bytes object.

import des_PurePy
des = des_PurePy.DES("0x133457799bbcdff1")

You can encrypt by calling encrypt() and passing in a hex string or bytes object.

des.encrypt("0x0123456789abcdef")    # -> "0x85e813540f0ab405fdf2e174492922f8"

You can simarly decrypt by calling decrypt() and passing in a hex string or bytes object.

des.decrypt("0x85e813540f0ab405fdf2e174492922f8")    # -> "0x0123456789abcdef"

By default, encryption input is padded to a multiple of the block size (8 bytes) according to PKCS5. Inputs that are multiple blocks long are encrypted using the Electronic Code Book (ECB) mode of operation.

Encrypting Bytes Objects and Text

Inputs can be hex strings or bytes objects. The key must always be 8 bytes but the encryption input can have any size. Because of the bytes object support, with some work, you can encrypt and decrypt text.

import des_PurePy

key = b"password"
des = des_PurePy.DES(key)

ciphertext = des.encrypt(b"secret message")                 # -> "0x0d417ca7d23582bab5e2c9277f801591"
cleartext = des.decrypt(ciphertext)                         # -> "0x736563726574206d657373616765"
cleartext = bytes.fromhex(cleartext[2:]).decode("utf-8")    # -> "secret message"

Note that all input is validated so if you passing in an inapropriate input the module will raise a corresponding error.

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

des_purepy-1.0.9.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

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

des_purepy-1.0.9-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

Details for the file des_purepy-1.0.9.tar.gz.

File metadata

  • Download URL: des_purepy-1.0.9.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for des_purepy-1.0.9.tar.gz
Algorithm Hash digest
SHA256 1ff5bd7830e0b87b29f979562efb7e293d182afee90dbc1d8da934a5282c2c20
MD5 701c86fe1ae569b13d100edf055ac1e5
BLAKE2b-256 a9e5ff63cc28922d177842c755bee5b5076ed66bf7463777bf07d65f9fbd1d77

See more details on using hashes here.

File details

Details for the file des_purepy-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: des_purepy-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for des_purepy-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 80c00f3ce811c4dc0cae38df02ccc01550800bf99ec9103e74f8bac6c99e1a00
MD5 6d1a8a762e9f4b2e5bb79c7a31079cd9
BLAKE2b-256 7c6b82975692bb1fa6befd7e7bdcb758758e18cdccad53cc7bdd8649a5a2e287

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