Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #93094 > unrolled thread

Re: Pure Python Data Mangling or Encrypting

Started byRandall Smith <randall@tnr.cc>
First post2015-06-24 13:24 -0500
Last post2015-06-24 13:24 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Pure Python Data Mangling or Encrypting Randall Smith <randall@tnr.cc> - 2015-06-24 13:24 -0500

#93094 — Re: Pure Python Data Mangling or Encrypting

FromRandall Smith <randall@tnr.cc>
Date2015-06-24 13:24 -0500
SubjectRe: Pure Python Data Mangling or Encrypting
Message-ID<mailman.27.1435170306.3674.python-list@python.org>
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

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web