Stealthy text steganography and high-entropy secret generation.
Project description
Secretting 1.16.3
Stealthy text steganography and high-entropy secret generation.
Installation:
pip install secretting==1.16.3
If wont work:
pip3 install secretting==1.16.3
Example:
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
Random scheme
Secretting uses Chaos 20 system
How it works:
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.3]
Changed
- Icons was changed
Enjoy it!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
secretting-1.16.3.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file secretting-1.16.3.tar.gz.
File metadata
- Download URL: secretting-1.16.3.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43a4675c06bdab3fbc5e659b41e831d243508b2bd5d31a2909676eab2c2a8130
|
|
| MD5 |
103306aa21507ca5d08877908bb2f284
|
|
| BLAKE2b-256 |
e03ca3e63b59c3cfa279371c7385eed3da3d6a424c887fee95db0c79e6bc1222
|
File details
Details for the file secretting-1.16.3-py3-none-any.whl.
File metadata
- Download URL: secretting-1.16.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
343cc3adbd4b57454c6a6e5f2aea47144b7457196119bea94d586ddae7c04d6f
|
|
| MD5 |
8dabe0709079a6d96ca33f2af69d5edd
|
|
| BLAKE2b-256 |
539eb4ff1d7d00483f4c750c0e207c234ca5e66edda1380ecf1e8612a5ad2aab
|