Metadata-Version: 2.1
Name: SuckSCrypt
Version: 2.0
Summary: A Fastest & Secure Encryption System.
Home-page: https://github.com/IT-Club-SMKN-21-Jakarta/SuckSCrypt
Author: KyzuneX
Author-email: kyzunex@gmail.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: numpy
Requires-Dist: pycryptodome
Requires-Dist: pyarmor

# SuckSCrypt

A Fastest & Secure Encryption System.

## Installation

You can install SuckSCrypt via pip:

```bash
pip install SuckSCrypt
```

## Example Uses

```python
from suckscrypt.core import generate_key, sucks_encrypt, sucks_decrypt

# generate keyy and salt
key, salt = generate_key()

# enc
plaintext = b'Wow, SuckSCrypt is very secure.'
encrypted_text = sucks_encrypt(key, plaintext)

# dec
decrypted_text = sucks_decrypt(key, encrypted_text)

print(f'Encrypted text (hex): {encrypted_text.hex()[:20]}...')
print(f'Decrypted text: {decrypted_text.decode()}')
```

