Metadata-Version: 2.4
Name: ul-key
Version: 1.2.1
Summary: UL-Key An indispensable assistant in data encryption.
Home-page: https://example.com/ulkey
Author: starfal8k
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: click
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Install
```shell
pip install ul-key==version
```


## Example
```python
from ulkey import encode_ul, decode_ul

encoded = encode_ul("hello world!", seed="ul-key", mode="dynamic")
decoded = decode_ul(encoded, seed="ul-key", mode="dynamic")

print(encoded)
print(decoded)
```


### Examples console use
```none-key
ulkey-encode "text"
````
_________________

```key
ulkey-encode "Текст" --key "мой_секретный_ключ"
```
