Metadata-Version: 2.1
Name: Ogonek
Version: 1.0.0
Summary: An online library for hashing, licensing and protecting your programs, which includes homemade hashing algorithms and other useful functions.
Home-page: https://github.com/ModerkaScripts/Ogonek
Author: ttwiz_z
Author-email: moderkascriptsltd@gmail.com
Project-URL: Author, https://github.com/ttwizz
Project-URL: Organization, https://github.com/ModerkaScripts
Keywords: Ogonek
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0

# Ogonek
An online library for hashing, licensing and protecting your programs, which includes homemade hashing algorithms and other useful functions. Made with love :3

## Usage
```py
# Imports the module
import ogonek

# Gets an IP address
print(ogonek.IP())

# Generates a key using an encryption password
print(ogonek.GreatwixEmerald(login : str, password : str))

# Generates a short hash for a string
print(ogonek.Stellar(hash : str))

# Generates a long hash for a string
print(ogonek.Lunar(hash : str))

# Hashes a string using other algorithms
print(ogonek.AzureHash(algo : str, data : str))

# If you have any questions regarding Plugins, contact ttwiz_z#2081.
```
