Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ SR No | Project | Author
23 | [Fetch Wifi Saved Password Windows](https://github.com/chavarera/python-mini-projects/tree/master/projects/Get_wifi_password) | [Mitesh](https://github.com/Mitesh2499)
24 | [Save Screenshot of given Website](https://github.com/chavarera/python-mini-projects/tree/master/projects/Snapshot_of_given_website) | [m044de](https://github.com/m044de/)
25 | [Split files using no of lines](https://github.com/chavarera/python-mini-projects/tree/master/projects/Split_File) | [phileinSophos](https://github.com/phileinSophos/)
26 | [Encode and decode text using key](https://github.com/chavarera/python-mini-projects/tree/master/projects/Create_script_to_encode_and_decode_text) | [Gaodong](https://github.com/xlgd)
26 | [Encrypt and decrypt text](https://github.com/chavarera/python-mini-projects/tree/master/projects/Encrypt_and_decrypt_text) | [Gaodong](https://github.com/xlgd)
27 | [Captures screenshot at regular interval of time](https://github.com/chavarera/python-mini-projects/tree/master/projects/capture_screenshot) | [d33pc](https://github.com/d33pc/)
28 | [Create password hash](https://github.com/chavarera/python-mini-projects/tree/master/projects/Hashing_passwords) | [m044de](https://github.com/m044de/)
29 | [Encrypt file and folders](https://github.com/chavarera/python-mini-projects/tree/master/projects/Create_a_script_to_encrypt_files_and_folder) | [Gaodong](https://github.com/xlgd)
Expand Down
23 changes: 0 additions & 23 deletions projects/Create_script_to_encode_and_decode_text/README.md

This file was deleted.

27 changes: 27 additions & 0 deletions projects/Encrypt_and_decrypt_text/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# aes_encode

A small python program that encodes and decodes text.

### Prerequisites

- pycryptodome 3.9.8
- Python 3

### How to run the script

> python aes_encode.py "a text"

Example:
```
python aes_encode.py "hello world"
```
An encrypted file (`encrypted.bin`) will be generated
when the program has finished running.

### Screenshot/GIF showing the sample use of the script

![Screen shot](https://github.com/Python-World/python-mini-projects/blob/master/projects/Create_script_to_encode_and_decode_text/output.png)

### Author Name

[Gaodong](https://github.com/xlgd)