Pure Python Data Mangling or Encrypting

Randall Smith randall at tnr.cc
Wed Jun 24 14:24:46 EDT 2015


On 06/24/2015 02:44 AM, Devin Jeanpierre wrote:
> How about a random substitution cipher? This will be ultra-weak, but
> fast (using bytes.translate/bytes.maketrans) and seems to be the kind
> of thing you're asking for.
>
> -- Devin


I tried this out and it seems to be just what I need.  Thanks Devin!

It's pure Python, fast, and mangles the data sufficiently.

--Randall




More information about the Python-list mailing list