Metadata-Version: 2.4
Name: filecryptor_hp
Version: 1.0.0
Summary: Encrypt/decrypt files using key-based hexadecimal conversion
Author: WAQAS JAVED
Author-email: waqasjaved964@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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# FileCryptor

A Python library for encrypting files to hexadecimal format and decrypting them back using a secret key.

## Features

- Encrypt any file to hexadecimal format
- Decrypt hex files back to original format
- Uses SHA-256 key hashing for security
- Simple XOR encryption with key cycling
- Works with any file type

## Installation

No installation required. Just include the `src/file_cryptor` folder in your project.

## Usage

### Basic Usage

```python
from file_cryptor import encrypt_file, decrypt_file

# Encrypt a file
encrypt_file("document.txt", "encrypted.hex", "my_secret_key")

# Decrypt the file
decrypt_file("encrypted.hex", "restored.txt", "my_secret_key")
