Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shivang8/secure-file-storage-using-hybrid-cryptography
A secure platform for storing of files using Hybrid Cryptography
https://github.com/shivang8/secure-file-storage-using-hybrid-cryptography
cryptography file-storage file-upload flask-web-service public-key-cryptography python27
Last synced: about 1 month ago
JSON representation
A secure platform for storing of files using Hybrid Cryptography
- Host: GitHub
- URL: https://github.com/shivang8/secure-file-storage-using-hybrid-cryptography
- Owner: shivang8
- Created: 2018-07-13T15:12:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-02T08:53:39.000Z (over 2 years ago)
- Last Synced: 2024-10-12T09:20:50.436Z (about 1 month ago)
- Topics: cryptography, file-storage, file-upload, flask-web-service, public-key-cryptography, python27
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 48
- Watchers: 6
- Forks: 25
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secure-File-Storage-Using-Hybrid-Cryptography
## Objective: To Achieve a secure plateform for storing of files on Cloud using Hybrid Cryptography.
# Methodology
To achieve the above goal, the following methodology needs to be followed:
1. Load the file on the server.
2. Dividing the uploaded file into N parts.
3. Encrypting all the parts of the file using any one of the selected algorithms (Algorithm is changed with every part in round robin fashion).
4. The keys for cryptography algorithms is then secured using a different algorithm and the key for this algorithm is provided to the user as public key.After the above 4 steps you will have a N files which are in encrypted form which are stored on the server and a key which is downloaded as public key for decrypting the file and downloading it.
To restore the file, follow the following steps:
1. Load the key on the server.
2. Decrypt the keys of the algorithms.
3. Decrypt all the N parts of the file using the same algorithms which were used to encrypt them.
4. Combine all the N parts to form the original file and provide it to the user for downloading.# How to Run
**NOTE:** The project is based on Python 2.7.15 plateform running it on any other plateform might create some issues.
Step 1: Install Requirements
`pip install -r requirements.txt`Step 2: Run the application
`python app.py`Step 3: Visit the localhost from your browser
Step 4: Enjoy :)
[//]: <> (*IF YOU ENCOUNTER ANY BUGS OR FOR ANY SUGGESTIONS REGARDING THE IMPROVEMENT OF THE PROJECT FEEL FREE TO CONTACT ME :**)**THE PROJECT HAS ENCOUNTERED A BUG BECAUSE OF THE CRYPTOGRAPHY LIBRARY BEING UPDATED. IF YOU ARE INTRESTED IN COLLABORATING TO IMPROVE THIS PROJECT FEEL FREE TO CONTACT ME :**
Shivang Srivastava - [email protected]