Metadata-Version: 2.1
Name: barr4crypt
Version: 0.1.0
Summary: A simple rotation-based encryption tool
Home-page: https://github.com/francool57/barr4crypt
Author: Francisco Barreira
Author-email: franbarreira0@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Rotocrypt

Rotocrypt is a simple rotation-based encryption tool that provides a unique way to encrypt text.

## Installation

You can install Rotocrypt using pip:

```py
pip install rotocrypt
```

## Usage

Here's a quick example of how to use Rotocrypt:

```python
from rotocrypt import encrypt, id_generator

# Generate a random ID
random_id = id_generator(10)
print(f"Random ID: {random_id}")

# Encrypt a message
message = "Hello, World!"
rot_value = 3
encrypted = encrypt(message, rot=rot_value)
print(f"Encrypted message: {encrypted}")
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
