Skip to main content

A python package that include commonly used cryptographic algorithm and tools.

Project description

MyCrptool


A python package that include commonly used cryptographic algorithm and tools.

Install


pip install mycrptool

Dependencies


Here are external libraries that is used in this package.

bitarray

Usage


This package consists of 4 parts: symmetric, asymetric, hash, and tools.
To import all modules, it is recommanded to run from mycryptool import *

symmetric


This module includes 2 symmetric algorithms: AES128 and DES.

AES128

The Default scheme is CBC. if you want to try other schemes, welcome to explore the AES class (in symmetric.aes128).

Encrypt:

data = b'Jessie Pinkman in the house'
key = 'key'
cipher = symmetric.aes128.encrypt(key, data)

Decrypt:

symmetric.aes128.decrypt(key, cipher)

DES

DES only supports 2 schemes: CBC and ECB. Supported Features: encrypt and decrypt.

Encrypt:

key = b'chopperc'
iv = b'66666666'
data = b'Yo Yo Yo, Jessie Pinkman in the house!!!'

cipher = symmetric.des.des_cbc(data, iv, key, True)  # CBC

cipher = symmetric.des.des_ecb(data, key, True)  # ECB

Decrypt:

deciphered = symmetric.des.des_cbc(cipher, iv, key, False)  # CBC
deciphered = symmetric.des.des_ecb(cipher, key, False)  # ECB

asymmetric


This module includes 2 asymmetric algorithms: RSA and Elliptic Curve.
Supported Features: encrypt, decrypt, generate signature, and validate signature.

RSA

Encrypt:

data = b'Jessie Pinkman in the house'
# Warning: it takes a while to generate key pairs ( large prime numbers).
pub, pri = asymmetric.rsa.generate_key_pair()
cipher = asymmetric.rsa.encrypt(data, pub)

Decrypt:

asymmetric.rsa.decrypt(cipher, pri)

Generate signature:

signature = asymmetric.rsa.get_signature(hash.md5.md5(data), pri)
print(signature)

Validate signature:

asymmetric.rsa.is_valid_signature(hash.md5.md5(data), signature, pub)

Elliptic Curve

As for now, this module only supports 1 curve: ecp256k1.
However, you can Implement your own curve derived from the EllipticCurve class.

Implement customize curve:

class ecp256k1(EllipticCurve):
	# ecp256k1 https://www.secg.org/sec2-v2.pdf
	def __init__(self):
		a = 0
		b = 7
		p = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F
		Gx = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798
		Gy = 0x483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8
		n = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141

		super(ecp256k1, self).__init__(a, b, p, (Gx, Gy), n)

Encrypt:

ec = asymmetric.elliptic_curve.ecp256k1()
pri = ec.get_private_key()
pub = ec.get_public_key(pri)
ec_cipher = ec.encrypt(data, pub)
print(ec_cipher)

Decrypt:

ec.decrypt(ec_cipher, pri)

Generate signature:

signature = ec.get_signature(hash.sha1.sha1(data), pri)

Validate signature:

ec.is_valid_signature(hash.sha1.sha1(data), signature, pub)

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

mycryptool-1.1.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

mycryptool-1.1-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file mycryptool-1.1.tar.gz.

File metadata

  • Download URL: mycryptool-1.1.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.5

File hashes

Hashes for mycryptool-1.1.tar.gz
Algorithm Hash digest
SHA256 9100b73e1b28af34692d339ace0a3b6b55bb850ebdb84d73c04399a2be7c9a00
MD5 5a34926a7a52aa1901b739433852b7c5
BLAKE2b-256 613518558a99764bea20403c2905ae31f1b89cc7f9742b92ab542806317b117e

See more details on using hashes here.

File details

Details for the file mycryptool-1.1-py3-none-any.whl.

File metadata

  • Download URL: mycryptool-1.1-py3-none-any.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.5

File hashes

Hashes for mycryptool-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b4ae1c327b2db9ff214414217295770a9f2f6158a805e5d9e46c8346bb548bec
MD5 8671e9fd86cc11f276d5d00294c78426
BLAKE2b-256 bacda491ef4dceb94ca86ecab3000b87517a686b96c90332eca6e260af3f42e0

See more details on using hashes here.

Supported by

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