Metadata-Version: 2.4
Name: jplcrypt
Version: 2.0.0
Summary: Çok anahtarlı XOR + rotasyon tabanlı şifreleme kütüphanesi
License: MIT
Project-URL: Homepage, https://github.com/kullanici_adin/jplcrypt
Keywords: cipher,encryption,xor,cryptography
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# jplcrypt

Çok anahtarlı XOR + döngüsel kaydırma tabanlı şifreleme kütüphanesi.

## Kurulum

```bash
pip install jplcrypt
```

## Kullanım

```python
from jplcrypt import JplCrypt

c = JplCrypt()
c.keys = ["anahtar1", "anahtar2", "anahtar3"]
c.text = "Şifrelenecek mesaj"

print(c.encrypted)   # hex çıktı
print(c.decrypted)   # orijinal metin
```

### Dışarıdan gelen hex'i çözmek

```python
from jplcrypt import JplCrypt

c = JplCrypt()
c.keys = ["anahtar1", "anahtar2"]
c.ciphertext = "3a9f..."   # hex
print(c.decrypted)
```
