Metadata-Version: 2.4
Name: PassShield
Version: 0.1.0
Summary: Secure password handling for database connections
Home-page: https://github.com/yourusername/passhash
Author: Raaj Kennedy
Author-email: kennedyraaj@gmail.com
Project-URL: Bug Reports, https://github.com/yourusername/passhash/issues
Project-URL: Source, https://github.com/yourusername/passhash
Keywords: password encryption security mysql database
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
License-File: LICENSE
Requires-Dist: cryptography>=3.4
Requires-Dist: mysql-connector-python>=8.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PassHash Library

A secure way to handle database passwords with encryption.

## Features

- 🔒 Encrypt/decrypt passwords using Fernet symmetric encryption
- 🛡️ Secure MySQL connection handling
- 🌐 Environment variable support for production
- ⌨️ CLI password prompt for development
- 🔄 Key rotation support
- ✅ Unit tested

## Installation

```bash
pip install passhash

