Skip to main content

[WIP] New cypher library.

Project description

Multiplexer


Multiplexer is an encryption library.

Installation

pip install multiplexer

Usage

from multiplexer import Plex, generate, load

book = load() or generate("michel", save=True)

p = Plex(book)

cypher = p.encode('My secret message')
print(cypher)

secret_message = p.decode(cypher)
print(secret_message)

# Human readable
cypher = p.h_encode('My secret message')
print(cypher)

secret_message = p.h_decode(cypher)
print(secret_message)

Logging

import logging

logger = logging.getLogger('multiplexer')
logger.setLevel(logging.INFO)

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

multiplexer-0.0.7.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

multiplexer-0.0.7-py3-none-any.whl (3.3 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