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

Documentation

Full documentation: https://perez-herrera-luna.github.io/DES-Python/

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.16.tar.gz (37.7 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.16-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: des_purepy-1.0.16.tar.gz
  • Upload date:
  • Size: 37.7 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.16.tar.gz
Algorithm Hash digest
SHA256 c520d62495ba18ecb8ed9a7c9e3956a4acaf4b38fb80facdb0f31e1177783801
MD5 b0ff6979019cbaf394767beaccb0dc54
BLAKE2b-256 f705a8668b6bd02ce44c752270deb907d0dc46edf8a60a72d8a88f795dc235e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for des_purepy-1.0.16.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.16-py3-none-any.whl.

File metadata

  • Download URL: des_purepy-1.0.16-py3-none-any.whl
  • Upload date:
  • Size: 31.5 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.16-py3-none-any.whl
Algorithm Hash digest
SHA256 09721d02867fc4703950b71bc0155939cecc03b4209da3cdb0feb452dd8b2fce
MD5 f8ecc0266bea593c502b580f04844589
BLAKE2b-256 9792dcacf403473092068a54d01dbae09b55e090ff174f554c021592d645c698

See more details on using hashes here.

Provenance

The following attestation bundles were made for des_purepy-1.0.16-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