Steganography_in_text
Скрывайте свои тайны удобно!!!
Шифратор
"""
Создадим наш шифратор
По умолчанию int_seed = 0
Он необходим для первичной перемешки
списка, необходимого для шифровки
Подробнее ниже
"""
from steganography_in_text import Crypter
crypter = Crypter()
crypter = Crypter(int_seed)
"""
А теперь давайте зашифруем ниши сообщения
sms - будет видно после шифрации, данное сообщение будет выступать обманкой
password - это пароль типа str
secret_message - наше секретное сообщение
"""
message = crypter.create_message(sms, password, secret_message)
Дешифратор
"""
Создадим наш дешифратор
По умолчанию int_seed = 0
Он необходим для первичной перемешки
списка, необходимого для расшифровки
Подробнее ниже
"""
from steganography_in_text import Decrypter
decrypter = Decrypter()
decrypter = Decrypter(int_seed)
"""
А теперь давайте расшифруем наши сообщения
sms - это сообщение в котором возможно есть шифровка
password - это пароль типа str
"""
message = decrypter.create_message(sms, password)
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file steganography_in_text-0.1.3.tar.gz.
File metadata
- Download URL: steganography_in_text-0.1.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b9836869c579780111ed4f47bdf915467e1126c0f006c808a3a4c7a4a2196d
|
|
| MD5 |
a3c0a8bf3dacfd1ee7eb52c16a318804
|
|
| BLAKE2b-256 |
9c425c7703dcf5b2e5dd8492c59769402d45ed5676ea8f5fae46336723953792
|