Create a very minimal system to securely store

Assignment Help Python Programming
Reference no: EM133288225

CSE 3320 Operating Systems - University of Texas at Arlington

Networking and Security

Description:

You will create a very minimal "Dropbox/Sugarsync/GoogleDrive/MS/Apple..."-like system to securely store and share files "in the cloud" (really on a remote server). Users will select unencrypted (plain) files (of any type) from a menu.

Then that file will be encrypted and then sent to a server (service).

Users will be able to selectively, or as a group, retrieve (and decrypt) those files later.
You should provide both the client side and server side of your implementation.

Hint:
C clients may look like this:
sockfd = socket(AF_INET, SOCK_STREAM, 0); address.sin_family = AF_INET; address.sin_addr.s_addr = inet_addr("127.0.0.1"); address.sin_port = htons(9734);
len = sizeof(address);
result = connect(sockfd, (struct sockaddr *)&address, len); write(sockfd, &ch, 1);
read(sockfd, &ch, 1);
printf("char from server = %c\n", ch); close(sockfd);
exit(0);
And servers like this:
server_sockfd = socket(AF_INET, SOCK_STREAM, 0); server_address.sin_family = AF_INET; server_address.sin_addr.s_addr = htonl(INADDR_ANY); server_address.sin_port = htons(9734);
server_len = sizeof(server_address);
bind(server_sockfd, (struct sockaddr *)&server_address, server_len); listen(server_sockfd, 5);
while(1) {
printf("server waiting\n"); client_sockfd = accept(server_sockfd,
(struct sockaddr *)&client_address, &client_len); read(client_sockfd, &ch, 1);
write(client_sockfd, &ch, 1); close(client_sockfd);

More Hints:
In Python, there are several libraries (depends on Python version you use.) There are encrypt/decrypt libraries for all languages (AES, DES, etc) Consider using "websockets", Java, Python or PHP
Bonus: Use a public server (AWS, Google, etc) for hosting, browser (client) interface,
Authentication (user,pwd), Certificates, Digital Signing, quotas


Attachment:- Operating Systems.rar

Reference no: EM133288225

Questions Cloud

Describe violations that were stated in the case : Describe violations that were stated in the case, including how the violations applied based on regulations - The charges and allegations contained
How case law both guides and affects public policy : How case law both guides and affects public policy - what a case brief is and what the steps are to writing one
Uniform commercial code to business transactions : Apply the Uniform Commercial Code (UCC) to business transactions - Understanding its application is key to successfully completing this assignment
Discuss the legal and ethical considerations : COM733 Advanced Ethical Hacking, Wrexham Glyndwr University Discuss the legal and ethical considerations that an organisation would need to consider when faced
Create a very minimal system to securely store : CSE 3320 Operating Systems - University of Texas at Arlington - create a very minimal "Dropbox/Sugarsync/GoogleDrive/MS/Apple..."-like system to securely store
How do you think that your stated difficulties : CHM 3120C Elementary Analytical Chemistry, University of South Florida Discuss procedural or sample handling errors that may have led to incorrect measurement
Applying supply chain mapping techniques : EM4057 Supply Chain Management, Aston University - applying supply chain mapping techniques to an organisation of your choice and to identify opportunities
Discuss the use of contrapposto : Discuss the use of contrapposto in at least two works of early Italian Renaissance art. Sculpture and painting are both acceptable mediums to explore.
How artwork contributed to a timestamp of change : Be sure to Include how each artwork contributed to a timestamp of change, and positively contributed to society culturally - beyond the artwork.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd