Metadata-Version: 2.1
Name: libcodebusters
Version: 1.1.0
Summary: Encoding and decoding various ciphers in Python
Home-page: https://github.com/smayya337/libcodebusters
Author: Shreyas Mayya
Author-email: smayya337@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: sympy

# libcodebusters

`libcodebusters` is my attempt at programming a variety of cipher encode and decode methods!

Here's what it can do:

|Encrypt|Decrypt|
|:--:|:--:|
|Affine|Affine|
|Aristocrat|Atbash|
|Atbash|Caesar|
|Baconian|Hill|
|Caesar|Rail Fence|
|Hill|Vigenere|
|Patristocrat|
|Rail Fence|
|Vigenere|

I used the `numpy` and `sympy` libraries to create `libcodebusters`.

I'm always trying to add new features! If you have a cipher that you'd like to see me include, let me know and I'll give it a shot.
In addition, I'm aware that these methods may not be very efficient - if you have an idea for improving the performance of this code, tell me about it.


