Skip to main content

Command Palette

Search for a command to run...

Secure File Storage on Cloud Using Hybrid Cryptography

Published
2 min readView as Markdown
S
I'm energetic, ambitious person who has developed a mature and responsible approach to any task that I undertake, or situation that I am presented with. I am excellent at working with others to achieve a certain objective on time and with excellence. Customer Engineer| Al/ ML |AI Infrastructure | Cloud Migration |Technical Solution| Vertex AI| Cloud Database |Cloud Networking |DevOps Engineer| Technical Blogger| Generative AI| Google Cloud Ready Facilitator 🌐Linux Linux Professional Institute Certificate Technical Writer \ Cloud Networking Cloud Computing \ Cloud Infrastructure Cloud Consultant \ Customer Engineer 🌐Virtualization - VMware, vSphere, vCenter Server 🌐Programming Skill Technical Skills Proficiency in languages like Java, Python, Scala, or JavaScript. System Administration: Experience with Linux/Unix systems, Windows Server. Networking: Understanding of network protocols, routing, VPC, Subnets, Firewalls, VPNs, Load Balancers, switching, and firewall configurations. Cloud Platforms: Experience with AWS, Azure, or Google Cloud Platform. Databases: Knowledge of SQL and NoSQL databases like MySQL, PostgreSQL, MongoDB. Scripting: Ability to write scripts for automation using Bash, PowerShell, or similar. Monitoring and Logging: Familiarity with tools like Nagios, Prometheus, Grafana, ELK Stack. Configuration Management: Experience with tools like Ansible, Puppet, Chef. DevOps: Knowledge of CI/CD pipelines, Jenkins, Docker, Kubernetes. Security: Understanding of security best practices and tools, Cloud security best practices, IAM, Security Groups, Compliance. Infrastructure as Code: Terraform, CloudFormation, Ansible Compute Services: EC2, GCE, Azure VMs. Storage Solutions: S3, GCS Customer Service Skills:- Communication: Strong verbal and written communication skills. Problem-Solving: Ability to diagnose and resolve technical issues efficiently. Interpersonal Skills: Building and maintaining relationships with clients. Training and Education: Ability to conduct training sessions for clients. Project Management: Managing customer projects and ensuring timely delivery. Knowledge/experience in configuring and supporting devices such as Cisco, Juniper, Checkpoint, etc. Knowledge Cloud Migration, Presale, Data Center relocation, Go-to-Market Strategy. Certifications: AWS Certified Solutions Architect Microsoft Certified: Azure Solutions Architect Expert Google Professional Cloud Architect Certified Kubernetes Administrator (CKA)

Objective: To Achieve a secure plateform for storing of files on Cloud using Hybrid Cryptography.

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

Basic Requirement: Python Interpreter

 Advantages: • The stored image file is completely secured, as the file is being encrypted not by just using one but three encryption algorithm which are AES, DES and RC6. • The key is also safe as it embeds the key in image using LSB. • The system is very secure and robust in nature. • Data is kept secured on cloud server which avoids unauthorized access.

 Disadvantages: • Requires an active internet connection to connect with cloud server.

 Application: Data security is a major priority. This system can be implemented into banking and corporate sectors to securely transfer confidential data.

4 views

More from this blog

C

CloudGrad

96 posts