Metadata-Version: 2.4
Name: fixcrypto
Version: 0.8.0
Summary: Secure encryption library using Double XOR Cipher
Author: Scaramouche
Author-email: 
Project-URL: Bug Reports, https://github.com/scaramouche/fixcrypto/issues
Project-URL: Source, https://github.com/scaramouche/fixcrypto
Keywords: encryption,crypto,security,xor,cipher
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow>=9.0.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: qrcode>=7.3.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🔐 FixCrypto

**Secure Double XOR Cipher encryption for Python**

FixCrypto is a modern encryption library that implements the **Double XOR Cipher** algorithm for text and file protection. Designed for developers who need simple yet effective encryption.

## ✨ Features

- **Double XOR Cipher** - Two-layer XOR encryption with modular arithmetic
- **File encryption** - Encrypt any file type (text, images, documents)
- **Smart key management** - Generate, save, and validate encryption keys
- **Content detection** - Auto-detect file types and content structure
- **QR code support** - Convert encrypted data to scannable QR codes
- **Data recovery** - Attempt recovery of corrupted encrypted data
- **Metadata support** - Add and extract metadata from encrypted data

## Quick Start

### Installation
```bash
pip install fixcrypto
