Metadata-Version: 2.4
Name: secretting
Version: 1.16.2
Summary: Stealthy text steganography and high-entropy secret generation.
Home-page: https://pypi.org/project/secretting/
Author: kanderusss
Author-email: secrettingpythonlib@gmail.com
License: MIT
Project-URL: Documentation, https://pypi.org/project/secretting/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# Secretting 1.16.2

# Stealthy text steganography and high-entropy secret generation.
# Installation:
```bash
pip install secretting==1.16.2
```
## If wont work:
```bash
pip3 install secretting==1.16.2
```

# Example:
```python
from secretting import *

salt() # Output: salt
sha256("a") # Output: hash
secure256("a") # Output: (hash, salt)
isEqual(1, 1) # Output: True
isEqual(1, 2) # Output: False
chars # Output: (ascii_letters, digits, punctuation)
tokenHex(32) # Output: token with 32 bytes

# And more nice tools!
```
# Libs:
## Secrets (choice, compare_digest)
## Random (shuffle, random, randint)
## String (ascii_letters, digits, punctuation)
## Hashlib (sha256, sha512)
## GetPass (getpass)
## Typing (any)

# Github
## [My github account](https://www.youtube.com/watch?v=dQw4w9WgXcQ)

# Random scheme
## Secretting uses Chaos 20 system
## How it works:
```python
import secrets

def x_or_o():
    return secrets.choice(["x", "o"])
def chaos20system(func, *args, **kwargs):
    return secrets.choice([func(*args, **kwargs) for _ in range(20)])
# This is list of 20 functions runs.
# Chaos 20 System returns 1 random of this list.
# It is more random than secrets.choice and random.choice.
# Secretting made by this scheme only.
# And yeah its made by me.
# You can copy this scheme.
```

# Changelog

# [1.16.2]

## Changed
- **Icons was changed**



# Enjoy it!

![PyPI - Version](https://img.shields.io/pypi/v/secretting)
![PyPI - Downloads](https://img.shields.io/pypi/dm/secretting)
![PyPI - License](https://img.shields.io/pypi/l/secretting)
![PyPi - Badge](https://img.shields.io/pypi/v/secretting?color=green&logo=python)
![PyPi - Status](https://img.shields.io/pypi/status/secretting)
![PyPi - Format](https://img.shields.io/pypi/format/secretting)
![PyPi - PyVersions](https://img.shields.io/pypi/pyversions/secretting)
