https://github.com/r3k4t/hidden_message
A secret communication system.
https://github.com/r3k4t/hidden_message
kali-linux linuxmint python3 ubuntu
Last synced: about 1 month ago
JSON representation
A secret communication system.
- Host: GitHub
- URL: https://github.com/r3k4t/hidden_message
- Owner: r3k4t
- License: mit
- Created: 2020-11-04T17:03:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-04T17:31:44.000Z (over 4 years ago)
- Last Synced: 2025-01-17T21:30:57.846Z (3 months ago)
- Topics: kali-linux, linuxmint, python3, ubuntu
- Language: Python
- Homepage: https://github.com/r3k4t
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/r3k4t/hidden_message/blob/master/LICENSE)
[](https://www.python.org/downloads/release/python-390/)
[](https://en.wikipedia.org/wiki/Linux/)Hidden Message
Author : RKT
### Description ###

This program can hide your secret message.Its name is hidden_message.It builds on python.A hidden_message has two programs.There are message encrypt or message decrypt programs.Anyone can not see or spy your message from social media or any sms sender site.You can hide government secret message or information.At first,you can clone hidden_message github in your linux terminal and enter a message.In the time,a hidden_message program can encrypt your message.You can send encrypt message your friend and he can open his linux terminal.He can select a message decrypt option and enter a message hash.In this time, a hidden_message program can decrypt your message.He can see your message.A secret communication system.
### Message Encryption (conecpt) ###
>>> import cryptography
>>> from fernet import Fernet
>>> key = Fernet.generate_key()
>>> print (key)
b'f2oJOLBrYq0EnfxkkrmIwR4gO-guHF9riQ5W61ukp4s='### key.key file ###
>>> import cryptography
>>> from fernet import Fernet
>>> key = Fernet.generate_key()
>>> print(key)
>>> file = open('key.key','wb')
>>>>file.write(key)
>>>>file.close()#### Tested On ###
- Ubuntu
- Kali Linux
- Linuxmint
- Parrot Os
### Installation ###
We need to install cryptography and fernet on our linux .Open a terminal type and type the following command:
- sudo apt install python3-cryptography or pip3 install cryptography
- sudo apt install python3-fernet or pip3 install fernet
### Terminal Command ###
- git clone https://github.com/r3k4t/hidden_message.git
- cd hidden_message
- python3 hidden_message.py
### Example ###

Next
