https://github.com/ahmedemad242/secure-shared-file-storage
Project aims to create a secure platform for file sharing using File Transfer Protocol (FTP) and hybrid cryptography. The project involves building an FTP server and client application in Python, as well as implementing multiple cipher encryption to protect the transferred files
https://github.com/ahmedemad242/secure-shared-file-storage
cryptography encryption ftp python
Last synced: about 1 year ago
JSON representation
Project aims to create a secure platform for file sharing using File Transfer Protocol (FTP) and hybrid cryptography. The project involves building an FTP server and client application in Python, as well as implementing multiple cipher encryption to protect the transferred files
- Host: GitHub
- URL: https://github.com/ahmedemad242/secure-shared-file-storage
- Owner: ahmedemad242
- License: gpl-3.0
- Created: 2023-01-03T08:18:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T16:08:01.000Z (over 3 years ago)
- Last Synced: 2025-02-09T19:42:16.274Z (over 1 year ago)
- Topics: cryptography, encryption, ftp, python
- Language: Python
- Homepage:
- Size: 1.37 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Secure File Sharing using FTP and Hybrid Cryptography
This project aims to provide a secure platform for file sharing using the File Transfer Protocol (FTP) and hybrid cryptography. The secure FTP client encrypts data before sending it to the server and decrypt it on download given
a key
features:
- Encrypt and upload file to FTP server
- Download and decrypt files from FTP server given a private key
- Navigation and control of FTP file system
## Getting Started
### Prerequisites
- Python 3.8 or later
### Installing
#### Virtual environments
```bash
$ python -m venv venv
$ source ./venv/bin/activate
$ . ./initialize_project.sh
```
#### Running Secure FTP Client
```bash
$ python run.py
```
#### Running Local FTP Server
```bash
$ python -m pip install python-ftp-server
$ python -m python_ftp_server -u "username" -p "password" --ip 0.0.0.0 --port 6060 -d "home/temp/"
```
## Usage
### Upload Demo

### Download Demo

## Security
- The system uses hybrid cryptography for file protection using AES, DES, and BlowFish.
- The master key is encrypted using RSA.
- Secure key exchange using RSA outside the app
## License
This project is licensed under the GNU GPLv3 License - see the [LICENSE](LICENSE) file for details.