Metadata-Version: 2.4
Name: vrencryption
Version: 0.1.1
Summary: an encryption system where you can encrypt or decrypt using encrypt(text, key), and decrypt(text, key).
Author-email: Vihaan Rao <dudedunkin.dude@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

#Encryption

A lightweight, secure Python module to encrypt and decrypt sensitive text data.

## Installation

```bash
pip install encryption
```

## Quick Start

```python
import encryption
key = 14768536578
text = "Hello World"
encrypted_text = encrypt(key, text)
print(encrypted_text)
decrypted_text = decrypt(encrypted_text, key)
print(decrypted_text)
```

## Features

* Fast symmetric encryption algorithms.
* Secure key-based string generation.
* Zero external dependencies.

## License

This project is licensed under the MIT License.
