Skip to main content

A pure python implementation of DES

Project description

DES-Python

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

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 pass 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.13.tar.gz (22.3 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.13-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: des_purepy-1.0.13.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for des_purepy-1.0.13.tar.gz
Algorithm Hash digest
SHA256 d06cfbf7d7bedabb0189c8a48db98eaa1704df5c4228ea379d4d4c2f4ed5607a
MD5 9316cb0af7d6fd50e1ffd6af5d9ec4dd
BLAKE2b-256 95bf9bdfb3db637eda0e59136c0057bae9cd91d27f8de323ee9b3eb0e8a64426

See more details on using hashes here.

Provenance

The following attestation bundles were made for des_purepy-1.0.13.tar.gz:

Publisher: release.yaml on Perez-Herrera-Luna/DES-Python

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

File details

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

File metadata

  • Download URL: des_purepy-1.0.13-py3-none-any.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for des_purepy-1.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 40eced07e147f942db608867f4193c971678262f5e82e278a9625038b91c85a6
MD5 c170dcfdea3dc3090a305507fff3202e
BLAKE2b-256 24e7b75d0ed5f3071771da976af1c784ef02894ebc2b658aab71f0ab5d795efc

See more details on using hashes here.

Provenance

The following attestation bundles were made for des_purepy-1.0.13-py3-none-any.whl:

Publisher: release.yaml on Perez-Herrera-Luna/DES-Python

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