Metadata-Version: 2.4
Name: hill-cipher-lib
Version: 0.1.0
Summary: A simple implementation of the Hill Cipher encryption and decryption.
Author-email: Mokesh <mokesh0606@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Dynamic: license-file

# Hill Cipher Library

A Python library for encrypting and decrypting text using the **Hill Cipher** algorithm.

## Installation
```bash
pip install .
```

## Usage
```python
import numpy as np
from hill_cipher import hill_encrypt, hill_decrypt

key = np.array([[3, 3], [2, 5]])
plaintext = "HELLO"
ciphertext = hill_encrypt(plaintext, key)
print("Encrypted:", ciphertext)

decrypted = hill_decrypt(ciphertext, key)
print("Decrypted:", decrypted)
```

## License
This project is licensed under the MIT License.
