国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫COMP3334、代做C/C++,Python編程
代寫COMP3334、代做C/C++,Python編程

時間:2025-03-07  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Redistributing this file (including partially) to 
CourseHero or other public websites is strictly prohibited.
COMP3334 - Project
Section 1: Overview
Online storage is a popular application in our daily life. With online storage, a user can 
upload its files to a server and access them when the user wants. The security of uploaded 
content is important because it may contain the sensitive information of users. 
In this project, you and your teammates should design a secure online storage system, 
which contains various functionalities, such as user authentication, access control, file 
encryption and activity auditing, etc.
Section 2: Deadlines
1. Team Registration: 11:59 PM, March 6th, 2025. 
2. Submission of required materials: 11:59 PM, April 6th, 2025.
a. The materials include your report, codes and demonstration video.
Section 3: Team Requirements
Students should participate in this project in teams. Each team should have a voluntary 
coordinator for administrative purposes. The coordinator should fill in a form 
(https://forms.office.com/r/c8VaKumiMG, needs PolyU Connect account) to register 
his/her team before 11:59 PM March 6th, 2025.
You may use the discussion board in Blackboard to find your teammates.
To avoid high workload and free riders, each team should contain 3 or 4 students (4 is 
recommended). 
If there are any students who are not in a team after the deadline, they will be organized as 
several teams randomly. We will try to keep the size of teams within 3~4 students. However, 
in extreme cases, it may not follow the regular guidelines. 
Section 4: Threat Models
Your application should contain two sub-programs, Client and Server. 
Client program helps a user upload its files and access them when the user wants. 
Server program receives the uploaded files and manages the users.
A user operates a Client program to use your application. 
Client and Server are communicated via network connections.
We assume that machine that runs Server is a passive adversary. It executes your program
honestly but monitors communication and the stored data from a Client and wants to 
decrypt this Client’s uploaded files. That means, the machine that runs Server does not 
perform active attacks, such as altering the messages, returning fake content, etc. It only 
READ the messages from a client program and wants to decrypt files based on the read 
messages. 
We also assume that there is a passive adversary who is an unauthorized user. This 
unauthorized adversary may use a legitimate user’s computer to try to access the online 
files of that legitimate user.
The security measures in your application should be able to prevent such adversaries. 
Section 5: Functionality
The CORE functionalities of your application are listed below:
1. User Management: 
a. Register a user by username and password.
i. The username must be unique.
ii. The password must be hashed by a proper algorithm. 
b. Log in
i. Check whether the password is identical to the password in 
registration.
c. A user should be able to reset its password.
2. Data Encryption:
a. Upload
i. When a user uploads a file, the client should encrypt the file using 
an appropriate cryptosystem, with the key securely generated and 
stored locally. 
ii. Server should not be able to read the file in plaintext. 
b. Download
i. When a user downloads a file, the client should decrypt the file and 
return the plaintext to the user.
3. Access Control
a. A user can only add/edit/delete its own files. 
b. A user can share its files with designated users. The designated users should 
be able to read the shared files via their Clients.
c. An unauthorized user should not be able to access the file content of other 
users. 
4. Log Auditing
a. The critical operations, such as logging in, logging out, uploading, deleting, 
sharing, should be recorded. 
i. A user should not be able to repudiate it.
b. The administrator account of your application should be able to read logs.
5. General Security Protection
a. File name must be valid. Some file names can be used to attack. For 
example, the file name “../file.txt” (without quotes) can be used to access 
file.txt in the parent folder.
b. Your application should also consider the security threats on accounts, e.g., 
SQL injections.
The EXTENDED functionalities of your application are listed below:
1. Multi-Factor Authentication (MFA): FIDO2, One-Time Password (OTP), 
email/phone verification code, etc.
2. Efficient update on files: Suppose you are editing a file that has already been saved
online. If you want to modify a part of this file, find a method that Client does not 
need to encrypt the entire file and submit it again. 
3. Other security designs that you think are necessary.
Your application should implement at least ALL of the CORE functionalities. 
Your application should implement at least ONE of the EXTENDED functionalities.
The implementations on EXTENDED functionalities will be considered in grading. 
(However, please do not add too many functionalities to your applications.)
To reduce your workload, your application does not need a Graphical User Interface (GUI). 
Running in command line is enough. However, you should at least provide a menu (in 
command line) to assist your user to use your application. 
Section 6: Programming Languages and Potential Needed Tools
You may use any programming languages you are familiar with. However, it is 
recommended to use Python due to its low difficulty. 
In the design of Server, you may need a database to host the user information. It is 
recommended to use SQLite, which is a lightweight database system. 
Python has already provided some cryptography libraries. You can refer to our Tutorial 1. 
If you are using C/C++, it is recommended to use OpenSSL, which is a popular and 
comprehensive cryptography library in C/C++.
It is recommended to use the existed cryptography libraries as building blocks, because 
your own implementation may not consider all security concerns.
However, you are not allowed to call all-in-one libraries to build your application.
Here is an example, which is simply called an existed library as your application.
import xxx_library
server = xxx_library.storage_server()
server.start()
As long as your implementation involves reasonable details for solving this problem, then 
it is fine. Unless it is too obvious, we will be very moderate when deciding if 
implementation is solely based on all-in-one libraries, i.e., let us see your efforts. 
Section 7: Report File
Your report should be within 10 pages. More pages do not lead to higher grades. 
• Include your team’s name, your names and student IDs in the report.
• A contribution table indicating your percentage of contributions, in total 100%. 
o Grades will be adjusted accordingly.
• Abstract
• Introduction
o Background
• Threat Models
o Who are adversaries?
o What are the abilities of adversaries?
o etc.
• Algorithms you designed to implement functionalities
o For each functionality requirement, what your theoretical design is.
▪ Which building blocks (algorithms, tools, etc.) you used.
▪ How you used them to design a workflow that meets the 
requirement.
o To implement your theoretical design, what the technical details are.
▪ Which libraries you used.
▪ Are there any technical challenges? If yes, how you encountered 
them.
• At least 2 Test Cases
o To verify whether your design can resist attacks.
o Examples: Whether the files uploaded by users can be read by 
unauthorized users or not, SQL Injection Attacks, and whether 
unauthorized users can get the secret keys or not, …
• Future Works
• Reference
Section 8: Demonstration Video
A team should record a 10-min demonstration video to demonstrate the designed 
functionalities with necessary description.
Section 9: Code
Your code must contain all the source codes, a file that can be imported to SQL database 
and a step-by-step document about how to deploy and use your application. 
This document must be able to guide a person to deploy and run your application from a 
clear Windows 11.0 OS (i.e., no assumptions on pre-installed software/libraries), i.e., your 
document should guide a person to install the needed software/libraries and use your 
application.
If you are using Python solely, it is recommended to export all your dependencies to a 
requirements.txt file when you are done. 
Your code should be well documented that is comprehensive comments and is readable. 
Section 10: Submission Guidelines
• Create a folder with the name TeamName
o Put all your code in a folder with the name code
o Rename your report with the name report (with the extension name, such as 
pdf)
o Rename your video with the name video (with the extension name, such as 
mp4)
o Put code, report and video in the folder TeamName
o You should replace TeamName with your actual team’s name, which will be 
released after registration period. 
• Compress this folder as one zip file. 
• Follow the example below to name your zip file by replacing TeamName with your 
actual team’s name:
o TeamName.zip
• Your submission should be submitted by your TEAM COORDINATOR before 
the deadline. 


請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當(dāng)前頁
  • 上一篇:代寫MS6711、代做Python語言程序
  • 下一篇:易分期全國客服電話-易分期24小時人工服務(wù)熱線
  • ·INT5051代做、代寫Python編程設(shè)計
  • ·代做ACCT 6142 、代寫Python編程語言
  • ·CS 189代做、Python編程語言代寫
  • ·代寫INT2067、代做Python編程語言
  • ·代寫0CCS0CSE、代做Python編程設(shè)計
  • ·代做DEV5005A、代寫Java/Python編程
  • ·DSCI 510代寫、代做Python編程語言
  • ·MATH2033代做、代寫Java,Python編程
  • ·代做DI11004、Java,Python編程代寫
  • ·03CIT4057代做、代寫c++,Python編程
  • 合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    啊v视频在线一区二区三区| 久久免费看毛片| 99福利在线观看| 久久成人免费视频| 日本福利视频导航| 久久久亚洲欧洲日产国码aⅴ| 久久伊人精品天天| 欧美视频第一区| 色阁综合伊人av| 亚洲欧洲日韩精品| 古典武侠综合av第一页| 精品国产一区二区三区麻豆免费观看完整版 | 亚洲永久一区二区三区在线| 国产女主播一区二区三区| 国产精品免费小视频| 日韩精品久久久毛片一区二区| 久久综合九色综合网站| 亚洲 国产 日韩 综合一区| 国产一区在线观| 欧美精品做受xxx性少妇| 国产在线青青草| 国产精品久久77777| 蜜桃久久精品乱码一区二区| 国产精品偷伦免费视频观看的 | 成人国产精品一区| 伊人久久大香线蕉综合75| 成人精品小视频| 亚洲精品中文字幕无码蜜桃| 久久久一本二本三本| 日本一区二区三区精品视频| 久久精品美女| 欧美牲交a欧美牲交aⅴ免费下载 | 日韩在线视频免费观看高清中文| 日韩精品电影网站| 国产成人精品日本亚洲| 人妻熟女一二三区夜夜爱| 久久艹中文字幕| 欧美乱大交xxxxx潮喷l头像| 国产精品久久久久久婷婷天堂| 麻豆91av| 中文字幕99| 国产经典一区二区| 欧美综合一区第一页| 国产精品欧美激情在线观看| 国产精品自拍小视频| 亚洲v日韩v欧美v综合| 国产成人97精品免费看片| 男女午夜激情视频| 欧美精品成人91久久久久久久| 成人毛片网站| 日韩免费在线视频| 精品毛片久久久久久| 国产精品69页| 欧美极品视频一区二区三区| 色综合天天综合网国产成人网| 91精品久久久久久久久久另类| 日韩欧美亚洲区| 欧美精品在线第一页| 国产福利精品在线| 国内精品国产三级国产在线专| 一区二区视频在线免费| 久久久久亚洲精品| 国产伦精品一区二区三区照片91| 五码日韩精品一区二区三区视频| 国产成人久久婷婷精品流白浆| 国产女主播一区二区三区| 日韩精品伦理第一区| 久操成人在线视频| 爽爽爽爽爽爽爽成人免费观看| 国产免费一区二区视频| 日本乱人伦a精品| 欧美精品免费在线| 久久精品99国产| 国产精品一区二区欧美 | 日韩精品久久一区| 欧美激情精品久久久| 国产成人福利网站| 国产精品中文字幕在线| 欧美亚洲国产精品| 丁香五月网久久综合| 久久伊人91精品综合网站| 久草青青在线观看| 99久久99| 国产一区二区在线免费视频| 日韩精品成人一区二区在线观看| 亚洲综合激情五月| 精品国产免费久久久久久尖叫| 久久久久久久免费视频| 国产精品一区二区三区在线播放| 欧美少妇一级片| 日韩av成人在线观看| 色与欲影视天天看综合网| 久久久精品国产网站| 国产福利片一区二区| 91久久精品一区| 国产欧美在线视频| 黄色片网址在线观看| 日韩精品在线中文字幕| 亚洲精品欧美极品| 在线视频91| 国产精品久久91| 久久精品国产亚洲一区二区| 国产二区不卡| 久久久亚洲福利精品午夜| 成人国产精品色哟哟| 国产老熟妇精品观看| 国内精品在线观看视频| 日韩精品无码一区二区三区 | 国产精品成人一区二区三区吃奶| 日韩中文理论片| 久久久久久午夜| 国产成+人+综合+亚洲欧洲| 91精品国产91久久久久久| 成人国产一区二区| 99久久综合狠狠综合久久止| 国产精品中文字幕在线观看| 国产亚洲欧美在线视频| 国产淫片av片久久久久久| 欧美高清视频一区| 黄色成人在线看| 麻豆av一区| 国产日韩在线看片| 国产亚洲情侣一区二区无| 国产日韩在线精品av| 国产美女永久无遮挡| 国产精品一区二区三区免费视频| 国产乱子伦精品| 阿v天堂2017| 99www免费人成精品| 91精品国产91久久久久久最新| 91精品国产自产91精品| 久久综合九九| 国产成a人亚洲精v品在线观看| 国产精品aaaa| 国产成人亚洲精品无码h在线| 国产成人精品日本亚洲11| 久久久久久久久久亚洲| 国产精品网红直播| 久久亚洲国产精品| 欧美大片va欧美在线播放| 亚洲一区影院| 日韩成人av电影在线| 欧美在线观看视频| 韩日欧美一区二区| 国产男女猛烈无遮挡91| 91精品国产一区| 日韩中文字幕国产精品| 欧美成人四级hd版| 欧美精品激情在线观看| 亚洲第一精品区| 青草青草久热精品视频在线观看| 黄色av网址在线播放| 成人国产精品久久久久久亚洲| 国产高清精品一区二区| 久热国产精品视频| 欧美激情第6页| 色哺乳xxxxhd奶水米仓惠香| 欧美午夜精品久久久久久蜜| 国产欧美一区二区三区四区| 91国语精品自产拍在线观看性色| 久久99精品久久久久久三级 | 国产精品久久久久久久久久久不卡 | 欧美精品无码一区二区三区| 国产性生活免费视频| av免费网站观看| 日韩在线视频免费观看| 久久亚洲精品国产亚洲老地址| 亚洲精品欧美精品| 极品尤物一区二区三区| 成人免费在线网| 国产成人精品一区| 自拍另类欧美| 欧美国产视频在线观看| 成人国产精品日本在线| 精品激情国产视频| 久久久久久成人精品| 日韩欧美第二区在线观看| 国产伦精品一区二区三区高清版 | 亚洲精品欧美日韩| 国外色69视频在线观看| 7777在线视频| 国产精品成人av性教育| 天天爱天天做天天操| 免费国产在线精品一区二区三区| 97久久久久久| 操91在线视频| 日韩精品一区二区三区不卡| av不卡在线免费观看| 国产精品免费在线免费| 亚洲国产日韩欧美| 免费观看亚洲视频| 国产黄页在线观看| 欧美精品久久久久久久免费观看| 欧美中文娱乐网| 久久久综合香蕉尹人综合网| 九九精品视频在线| 欧美第一黄网| 久久久久久久久久久免费视频| 亚洲国产精品一区二区第一页 | zzjj国产精品一区二区|