├── .gitignore ├── .idea ├── .gitignore ├── .name ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── networksec.iml └── vcs.xml ├── Client.py ├── README.md ├── Server.py ├── algorithms ├── AESalgorithm.py ├── RSAalgorithm.py ├── __pycache__ │ ├── AESalgorithm.cpython-38.pyc │ └── RSAalgorithm.cpython-38.pyc ├── generateKey.py └── hashalg.py ├── img.assets ├── clip_image002.png ├── clip_image004.png ├── clip_image006.jpg ├── clip_image008.jpg ├── clip_image010.jpg ├── clip_image012.jpg ├── clip_image014.jpg ├── clip_image016.jpg ├── clip_image018.jpg ├── clip_image020.jpg ├── clip_image022.jpg ├── clip_image024.jpg ├── clip_image026.jpg ├── clip_image028.jpg ├── clip_image030.jpg └── clip_image032.jpg ├── keys ├── client │ ├── clientprivate.pem │ └── clientpublic.pem └── server │ ├── serverprivate.pem │ └── serverpublic.pem └── test ├── client.py ├── tclient.py └── tserver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | windowsGui.py -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/networksec.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/networksec.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/Client.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/README.md -------------------------------------------------------------------------------- /Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/Server.py -------------------------------------------------------------------------------- /algorithms/AESalgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/AESalgorithm.py -------------------------------------------------------------------------------- /algorithms/RSAalgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/RSAalgorithm.py -------------------------------------------------------------------------------- /algorithms/__pycache__/AESalgorithm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/__pycache__/AESalgorithm.cpython-38.pyc -------------------------------------------------------------------------------- /algorithms/__pycache__/RSAalgorithm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/__pycache__/RSAalgorithm.cpython-38.pyc -------------------------------------------------------------------------------- /algorithms/generateKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/generateKey.py -------------------------------------------------------------------------------- /algorithms/hashalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/algorithms/hashalg.py -------------------------------------------------------------------------------- /img.assets/clip_image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image002.png -------------------------------------------------------------------------------- /img.assets/clip_image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image004.png -------------------------------------------------------------------------------- /img.assets/clip_image006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image006.jpg -------------------------------------------------------------------------------- /img.assets/clip_image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image008.jpg -------------------------------------------------------------------------------- /img.assets/clip_image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image010.jpg -------------------------------------------------------------------------------- /img.assets/clip_image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image012.jpg -------------------------------------------------------------------------------- /img.assets/clip_image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image014.jpg -------------------------------------------------------------------------------- /img.assets/clip_image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image016.jpg -------------------------------------------------------------------------------- /img.assets/clip_image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image018.jpg -------------------------------------------------------------------------------- /img.assets/clip_image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image020.jpg -------------------------------------------------------------------------------- /img.assets/clip_image022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image022.jpg -------------------------------------------------------------------------------- /img.assets/clip_image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image024.jpg -------------------------------------------------------------------------------- /img.assets/clip_image026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image026.jpg -------------------------------------------------------------------------------- /img.assets/clip_image028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image028.jpg -------------------------------------------------------------------------------- /img.assets/clip_image030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image030.jpg -------------------------------------------------------------------------------- /img.assets/clip_image032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/img.assets/clip_image032.jpg -------------------------------------------------------------------------------- /keys/client/clientprivate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/keys/client/clientprivate.pem -------------------------------------------------------------------------------- /keys/client/clientpublic.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/keys/client/clientpublic.pem -------------------------------------------------------------------------------- /keys/server/serverprivate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/keys/server/serverprivate.pem -------------------------------------------------------------------------------- /keys/server/serverpublic.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/keys/server/serverpublic.pem -------------------------------------------------------------------------------- /test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/test/client.py -------------------------------------------------------------------------------- /test/tclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/test/tclient.py -------------------------------------------------------------------------------- /test/tserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunjiecn/Cybersecurity-EncryptChatProject/HEAD/test/tserver.py --------------------------------------------------------------------------------