From 69fe4c274cc334616d1f611302f31eb379a2131b Mon Sep 17 00:00:00 2001 From: tripleee Date: Tue, 6 Oct 2020 07:20:18 +0300 Subject: [PATCH 1/4] project/Encrypt_and_decrypt_text: rename (#304) This is about encrypting and decrypting, not encoding and decoding --- .../README.md | 0 .../aes_encode.py | 0 .../output.png | Bin .../requirements.txt | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename projects/{Create_script_to_encode_and_decode_text => Encrypt_and_decrypt_text}/README.md (100%) rename projects/{Create_script_to_encode_and_decode_text => Encrypt_and_decrypt_text}/aes_encode.py (100%) rename projects/{Create_script_to_encode_and_decode_text => Encrypt_and_decrypt_text}/output.png (100%) rename projects/{Create_script_to_encode_and_decode_text => Encrypt_and_decrypt_text}/requirements.txt (100%) diff --git a/projects/Create_script_to_encode_and_decode_text/README.md b/projects/Encrypt_and_decrypt_text/README.md similarity index 100% rename from projects/Create_script_to_encode_and_decode_text/README.md rename to projects/Encrypt_and_decrypt_text/README.md diff --git a/projects/Create_script_to_encode_and_decode_text/aes_encode.py b/projects/Encrypt_and_decrypt_text/aes_encode.py similarity index 100% rename from projects/Create_script_to_encode_and_decode_text/aes_encode.py rename to projects/Encrypt_and_decrypt_text/aes_encode.py diff --git a/projects/Create_script_to_encode_and_decode_text/output.png b/projects/Encrypt_and_decrypt_text/output.png similarity index 100% rename from projects/Create_script_to_encode_and_decode_text/output.png rename to projects/Encrypt_and_decrypt_text/output.png diff --git a/projects/Create_script_to_encode_and_decode_text/requirements.txt b/projects/Encrypt_and_decrypt_text/requirements.txt similarity index 100% rename from projects/Create_script_to_encode_and_decode_text/requirements.txt rename to projects/Encrypt_and_decrypt_text/requirements.txt From 5a5553e3da3e2ca830eb33ff079626490e8d55ca Mon Sep 17 00:00:00 2001 From: tripleee Date: Tue, 6 Oct 2020 07:21:27 +0300 Subject: [PATCH 2/4] projects/Encrypt_and_decrypt_text/README.md: update for renamed project --- projects/Encrypt_and_decrypt_text/README.md | 26 ++++++++++++--------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/projects/Encrypt_and_decrypt_text/README.md b/projects/Encrypt_and_decrypt_text/README.md index ac56f7da1..3b540e748 100644 --- a/projects/Encrypt_and_decrypt_text/README.md +++ b/projects/Encrypt_and_decrypt_text/README.md @@ -1,23 +1,27 @@ -# Script Title - -A small python program that creates a script to encode and decode text +# 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 after the program is run +``` +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 - -![ ](https://github.com/Python-World/python-mini-projects/blob/master/projects/Create_script_to_encode_and_decode_text/output.png) -## *Author Name* - +![Screen shot](https://github.com/Python-World/python-mini-projects/blob/master/projects/Create_script_to_encode_and_decode_text/output.png) + +### Author Name + [Fin McCallum](https://github.com/FinMc) From 47688784cb51d5290f33961ec5c6749e1ae2b4fe Mon Sep 17 00:00:00 2001 From: tripleee Date: Tue, 6 Oct 2020 07:29:47 +0300 Subject: [PATCH 3/4] projects/Encrypt_and_decrypt_text/README.md: fix author Script was created by Gaodong (@xldg) --- projects/Encrypt_and_decrypt_text/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Encrypt_and_decrypt_text/README.md b/projects/Encrypt_and_decrypt_text/README.md index 3b540e748..373ac8934 100644 --- a/projects/Encrypt_and_decrypt_text/README.md +++ b/projects/Encrypt_and_decrypt_text/README.md @@ -24,4 +24,4 @@ when the program has finished running. ### Author Name -[Fin McCallum](https://github.com/FinMc) +[Gaodong](https://github.com/xlgd) From 1903fb252e23b4cf32b54faa4ef27bd66ba4a2a7 Mon Sep 17 00:00:00 2001 From: tripleee Date: Tue, 6 Oct 2020 07:30:16 +0300 Subject: [PATCH 4/4] README.md: update for rename of text encryption project (#304) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1eb6d7366..5e9e862a7 100644 --- a/README.md +++ b/README.md @@ -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)