PyXor

A xor encryption module


License
MIT
Install
pip install PyXor==1.0.2

Documentation

PyXor Downloads

Langage

Python 3.9.4

Install

pip install pyXor

How To Use

XorEncode(key,string)

XorDecode(key,string)

Encode

import pyXor
print(pyXor.XorEncode("I'm A Key","I'm A String"))

Output:


110101001110110010100011101110111101110011101101100101001011111011101111101000011010010010100001

Decode

import pyXor
print(pyXor.XorDecode("I'm A Key","110101001110110010100011101110111101110011101101100101001011111011101111101000011010010010100001"))

Output:


I'm A String