Versions

Description

obfuscator ========== Obfuscator is a Python package used to obfuscate a set of data (e.g. bytes). It provides **no** encryption! It's strictly a "security through obscurity" tool, with limited usefulness. You have been warned! Install ======= Download the tarball and install with `pip install <package>`. Usage ===== See the unit tests for more in-depth examples. Here are the basics: ```python import obfuscator original_bytes = map(ord, "testing") _key, obfuscated_bytes = obfuscator.obfuscate_xor(original_bytes, key=0x66) deobfuscated_bytes = obfuscator.deobfuscate_xor(key=0x66, data=obfuscated_bytes) assert original_bytes == deobfuscated_bytes ```

Repository

https://github.com/mtik00/obfuscator.git

Project Slug

obfuscator

Last Built

8 months, 2 weeks ago passed

Maintainers

Home Page

https://github.com/mtik00/obfuscator

Badge

Tags

Project has no tags.

Short URLs

obfuscator.readthedocs.io
obfuscator.rtfd.io

Default Version

latest

'latest' Version

master