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) diff --git a/projects/Create_script_to_encode_and_decode_text/README.md b/projects/Create_script_to_encode_and_decode_text/README.md deleted file mode 100644 index ac56f7da1..000000000 --- a/projects/Create_script_to_encode_and_decode_text/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Script Title - -A small python program that creates a script to encode and decode 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 - -### 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* - -[Fin McCallum](https://github.com/FinMc) diff --git a/projects/Encrypt_and_decrypt_text/README.md b/projects/Encrypt_and_decrypt_text/README.md new file mode 100644 index 000000000..373ac8934 --- /dev/null +++ b/projects/Encrypt_and_decrypt_text/README.md @@ -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) 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