Metadata-Version: 2.4
Name: vortex-cipher
Version: 2.1.2
Summary: VortexCipher - Custom Block Cipher (128-bit block, 256-bit key)
Home-page: https://github.com/yourusername/vortex-cipher
Author: BoTenChoat
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/vortex-cipher
Project-URL: Repository, https://github.com/yourusername/vortex-cipher.git
Keywords: cipher,encryption,cryptography,block-cipher
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: certifi>=2023.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Requires-Dist: mypy>=0.990; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# VortexCipher

VortexCipher là custom block cipher (128-bit block, 256-bit key) cho mục đích nghiên cứu và học tập.

## ⚠️ CẢNH BÁO

Đây là thuật toán **NGHIÊN CỨU**, **CHƯA** qua peer-review mật mã học. 
**KHÔNG** sử dụng cho production. Cho production, dùng AES-256-GCM từ thư viện chuẩn.

## Tính năng

- Block size: 128-bit (16 bytes)
- Key size: 256-bit (32 bytes)
- 20 rounds
- Modes: CBC, CTR, AEAD (Encrypt-then-MAC)
- Certificate management (tích hợp từ requests)
- Constant-time operations
- Zeroize key material

## Cài đặt

```bash
# Từ private PyPI
pip install --index-url https://your-private-pypi.com/simple/ vortex-cipher

# Hoặc từ source
git clone https://github.com/yourusername/vortex-cipher.git
cd vortex-cipher
pip install -e .
