Metadata-Version: 2.4
Name: djzhpcom
Version: 0.1.0
Summary: 点对点加密Python库
Author: Your Name
Author-email: your.email@example.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
Requires-Dist: pycryptodome>=3.9.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# djzhpcom 加密库开发文档

## 项目概述
djzhpcom 是一个基于点对点加密算法的Python库，提供安全的加密通信功能。

## 功能特性
- 点对点加密通信
- 安全的密钥交换机制
- 支持多种加密算法
- 高性能加密/解密操作

## 安装方法
```bash
# 本地开发安装
pip install -e .

# 发布后安装
pip install djzhpcom
```

## 快速开始
```python
import djzhpcom

# 初始化加密器
encryptor = djzhpcom.P2PEncryptor()

# 加密数据
encrypted = encryptor.encrypt("Hello World")

# 解密数据
decrypted = encryptor.decrypt(encrypted)
```

## 开发计划
1. 实现基础加密算法
2. 添加密钥交换功能
3. 优化性能
4. 编写完整文档

## 贡献指南
欢迎提交Pull Request，请遵循PEP8编码规范。
