Metadata-Version: 2.4
Name: secure_passgenx
Version: 0.1.2
Summary: Basit şifre üretici ve hash hesaplayıcı
Author: Beyza YILDIRIM
Keywords: hash,password,security
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# secure_passgen

Basit bir Python şifre üretici ve hash hesaplayıcı kütüphanedir

## Kullanım
```python
from secure_passgenx import password_generator
password, hash_value = password_generator(12, "sha256", True, True, True, True)
print(password)
print(hash_value)
