Metadata-Version: 2.2
Name: bsscrypto
Version: 0.1.0
Summary: Private advanced cryptography system with hashing, encryption, and QR security.
Home-page: https://github.com/Sumedh1599/bsscrypto
Author: Sumedh Patil
Author-email: admin@aipresso.uk
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
Requires-Dist: bssauth
Requires-Dist: bssqrcode
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# bsscrypto

`bsscrypto` is a lightweight cryptography library designed for **enhanced password security and secure QR authentication**.

## Features

- **Secure password hashing**
- **AES encryption and decryption**
- **AI-enhanced QR code security**

## Installation

```bash
pip install bsscrypto

USAGE:
from bsscrypto import bsscrypto

key = bsscrypto.generate_key()
password = "StrongPass123!"

hashed = bsscrypto.hash_password(password)
print("Password Verified:", bsscrypto.verify_password(password, hashed))
```
