Metadata-Version: 2.1
Name: TransCipherTools
Version: 0.1
Summary: A Python library for the Transposition Cipher techniques  
Home-page: https://github.com/Fluffy-debuger/Transposition_Cipher
Author: Fluffy_Debuger
Author-email: a69247199@gmail.com
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
License-File: License.txt

```markdown
# TranspositionCipher

TranspositionCipher is a Python library that provides tools for encrypting and decrypting text using the Railfence and Columnar cipher.

## Installation

You can install using pip:

```bash
pip install TransCipherTools
```

## Example

### Encrypting & Decrypting using Railfence cipher

```python
from TransCipherTools import railfence
encrypted_text = railfence.encrypt(msg,no_of_rails) # eg. ("Hello",2)
decrypted_text = railfence.decrypt(cipher,no_of_rails)
```

### Encrypting & Decrypting using Columnar cipher 

```python
from TransCipherTools import columnar
encrypted_text =columnar.encrypt_message(msg, key)
decrypted_text = columnar.decrypt_message(cipher, key)
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
```
