Stealthy text steganography and high-entropy secret generation.
Project description
Secretting 1.13.3
Stealthy text steganography and high-entropy secret generation.
Installation:
pip install secretting==1.13.3
If wont work:
pip3 install secretting==1.13.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 funcs.
# Returns 1 random of this list.
# It is more random than secrets.choice and random.choice.
# Secretting made by only this scheme.
# And yeah its made by me.
# You can copy this scheme.
Changelog
Added
- CLI: Added CLI by using python -m secretting.
- Documentations: Cool documentations for functions and classes!
- Changelog: Changelog added only in this update, sorry.
- Functions: Added more cool functions! Like
tempVar,mirrorCipherand more!
Changed
- Better
__init__.pystructure. - License and classifiers was updated.
Fixed
- Version in
__init__.pywas fixed. hashByKeyfunctions in__init__.pywas also fixed.- Fixed changelog.
Enjoy it!
hi
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.13.3.tar.gz
(4.8 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.13.3.tar.gz.
File metadata
- Download URL: secretting-1.13.3.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b0171fce0d156824e09fce1815da67ee40b8d8c2685b61fb8a2c6b2f5442a8a
|
|
| MD5 |
fe1cd3611ff89e10015a9c6148f1b7d9
|
|
| BLAKE2b-256 |
6aacbc7eb3eb461f8565ccb3249dddfaaa2c2c1b3c6c8cc575761554959c9886
|
File details
Details for the file secretting-1.13.3-py3-none-any.whl.
File metadata
- Download URL: secretting-1.13.3-py3-none-any.whl
- Upload date:
- Size: 5.8 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 |
6f52f162d02c9b22574af15305eb6b719da849d391332156114f4b2856fdecdb
|
|
| MD5 |
1bde9dfa8cf24ef840db12f13ad92434
|
|
| BLAKE2b-256 |
fa3cfe9c6b46273ebddb41ae83a4a17db4e678505e7ba76ed8655284cd4397b0
|