Metadata-Version: 2.1
Name: str-basic-encryption
Version: 0.0.1
Summary: Simple library to encrypt strings with MD5, SHA256 and SHA512 hashes
Home-page: https://github.com/KidiXDev/str-basic-encryption
Author: KidiXDev
Author-email: <kidixdev@gmail.com>
License: MIT
Keywords: str,md5,sha256,sha512,encryption
Classifier: Development Status :: 1 - Planning
Description-Content-Type: text/markdown
License-File: LICENSE

# String Basic Encryption
Python simple library to encrypt strings with MD5, SHA256 and SHA512 hashes

## Installation
```shell
pip install str-basic-encryption
```

## Usage
Basic Usage:
```python
from str_basic_encryption import StrEncryption

encryptor = StrEncryption()

some_text = "Hello World!"
result = encryptor.str2md5(some_text)
print(f"Encrypted String: {result}")
```
