Skip to main content

A text format for easily interacting with cryptographic hashes and keys

Project description

pycryptostring

A text format for easily interacting with cryptographic hashes and keys

Description

One of the many challenges with working with encryption is that keys and hashes are arbitrary-looking binary blobs of data -- they have zero meaning to people just looking at them. They also lack context or any other descriptive information; a 256-bit BLAKE2B hash looks the same as a SHA256 hash, but Heaven help you if you get something mixed up.

The solution is to represent keys and hashes as text and pair an algorithm nametag with the text representation of the key or hash. For example, a sample 128-bit BLAKE2B hash in its binary form is represented in hex as a6 30 2a b0 da ef 14 fb 9b 82 b9 69 3e 78 76 6b. Without spaces, this is 32 characters. The same hash can be represented in CryptoString format as BLAKE2B-128:rZ6h7+V2$mn}WG%K6rL(.

The format consists of the prefix, a colon for the separator, and the Base85-encoded binary data. Base85 was chosen because of its higher efficiency and source. The prefix consists of up to 24 characters, which may be capital ASCII letters, numbers, or dashes. A colon is used to separate the prefix from the encoded data.

The official prefixes as of this writing are:

  • ED25519
  • CURVE25519
  • AES-128 / AES-256 / AES-384 / AES-512
  • SALSA20 / XSALSA20
  • SHA-256 / SHA-384 / SHA-512
  • SHA3-256 / SHA3-384 / SHA3-512
  • BLAKE2B-128 / BLAKE2B-256 / BLAKE2B-512
  • BLAKE3-128 / BLAKE3-256 / BLAKE3-512

Status

The module is production stable and in active use in combination with PyNaCl.

Usage

Regular usage of a CryptoString mostly involves creating an instance from other data. The constructor can take a CryptoString-formatted string or a string prefix and some raw bytes. Once data has been put into the instance, getting it back out is just a matter of casting to a string, or calling as_string(), as_bytes(), or as_raw(). The last of these three methods only returns the raw data stored in the object.

from pycryptostring import CryptoString, encode85

key = nacl.public.PrivateKey.generate()
my_public_key = CryptoString('CURVE25519', key.public_key.encode())
my_private_key = CryptoString('CURVE25519', key.encode())

print(f"My new public key is {my_public_key}")

The methods set(), set_raw(), and is_valid() are also useful. The module also comes with a bare function is_cryptostring() which returns True if a string passed to it is CryptoString-formatted.

Building

This is a very simple module. Most people will just want to install it from pip. Extracting the tarball and running python setup.py install will get you going otherwise.

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

pycryptostring-1.0.0.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

pycryptostring-1.0.0-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

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