Skip to main content

Some toy cryptographic modules and related tools that should never, ever be used anything over than demonstation purposes.

Project description

Toy cryptographic utilities

Checked with mypy Ruff Hatch project License: MIT


This is (almost certainly) not the package you are looking for.

The material here is meant for learning purposes only, often my own learning. Do not use it for anything else. And if you do, understand that it focuses on what I am trying to illustrate or learn. It may not always be correct, and it is not coded with safely in mind.

  • Use pyca if you need to use cryptographic tools in Python.
  • Use SageMath, sympy, or primefac if you want to play with some of the mathematics of some things underlying Cryptography in a Python-like environment.

Table of Contents

Motivation

This package is almost certainly not the package you are looking for. Instead, pyca or SageMath will better suite your needs. I created it to meet a number of my own idiosyncratic needs.

  • I don't have the flexibility of Python version that I may want when using SageMath.

    For example, I want to have access to something that behaves a bit like SageMath's factor() or the ability to play with elliptic curves without having do everything in Sage. Perhaps when sagemath-standard quickly becomes available for the latest Python versions, I won't need to have my own (failable and incomplete) pure Python substitutes for some things I need.

  • I sometimes talk about these algorithms for teaching purposes. Having pure Python versions allows me to present these.

    Proper cryptographic packages, like pyca,

    • Correctly obscure the lower level primitives I may wish to exhibit;
    • Correctly prevent use of unsafe parameters such as small keys;
    • Correctly involve a lot of abstractions in the calls to the concealed primitives.

    Those features, essential for something to be used, are not great for expository discussion.

  • Some of these I created or copied for my own learning purposes.

  • I have a number of "good enough" (for my purposes) implementations of things that I want to reuse.

    For example, Birthday collision calculations are things I occasionally want, and I don't want to hunt for wherever I have something like that written or rewrite it yet again. Likewise, I wouldn't be surprised if I'm written the extended GCD algorithm more than a dozen times (not all in Python), and so would like to have at least the Python version in one place

  • I want to use cryptographic examples in Jupyter Notebooks.

    I also want them to be reproducible, which is why I am making this public.

Installation

Don't. If you need to do cryptography in Python use pyca.

If you must

Once I've published this to PyPi, you will be able to install it with

pip install toycrypto

Until this is released on PyPi, you will just have to install from this source.

Usage

This is erratically documented at best, a combination of pydoc and reading the source it what you will need.

The import namespace is toy_crypto

An example might be something like this, using the factor function from the Number Theory (nt) module.

from toy_crypto.nt import factor

c = 9159288649
f = factor(c)

assert f == [(11, 2), (5483, 1), (104243, 1)]
assert str(f) == '11^2 * 5483 * 104243'
assert f.n == c
assert f.phi == 62860010840

License

toy-crypto-math is distributed under the terms of the MIT license.

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

toycrypto-0.1.1.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

toycrypto-0.1.1-py3-none-any.whl (22.7 kB view details)

Uploaded Python 3

File details

Details for the file toycrypto-0.1.1.tar.gz.

File metadata

  • Download URL: toycrypto-0.1.1.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.2

File hashes

Hashes for toycrypto-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b059c94493cdb9ad1a21dec4c5f397d833fd9589065c39f4dafcaec6d88bfb01
MD5 5a89a031afec9b1d9799b4b4220ccbd5
BLAKE2b-256 820e1fdfa8f8fc0652d3f4fad54fd43ba3949d91c6570939388fdeaf66fb047a

See more details on using hashes here.

File details

Details for the file toycrypto-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: toycrypto-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.2

File hashes

Hashes for toycrypto-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 32742d3b05263ace584ed6a1c1b4ab84839e915024efca12f66521b9c6cd79ec
MD5 8b2424082344a4f74729418dc56e2b11
BLAKE2b-256 2f0b197e11037caf8785d97d6fd30abd61128f8410134875009f8b52f491b428

See more details on using hashes here.

Supported by

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