日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫SCC.363、代做Java,c++設計程序

時間:2024-02-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



202**024 ASSESSMENTS
Undergraduate
Individual Programming
Assessment Weighting [30%]
SCC.363 Security and Risk
Academic Honesty and Integrity
Students at Lancaster University are part of an academic community that values trust,
fairness and respect and actively encourages students to act with honesty and integrity. It is
a University policy that students take responsibility for their work and comply with the
university’s standards and requirements- found in the Manual of Academic Regulations and
Practice. By submitting their answers students will be confirming that the work submitted is
completely their own. By submitting their answers the group of students will be confirming
that the work submitted is that of the group. Academic misconduct regulations are in place
for all forms of assessment and students may familiarise themselves with this via the
university website:
https://www.lancaster.ac.uk/academic-standards-and-quality/regulations-policies-andcommittees/manual-of-academic-regulations-and-procedures/
Plagiarism
Plagiarism involves the unacknowledged use of someone else’s work and passing it off as if it
were one’s own. This covers every form of submitted work, from written essays, video
vignettes, and coding exercises. However, deliberately plagiarism with the intent to deceive
and gain academic benefit is unacceptable. This is a conscious, pre-meditated form of
cheating and is regarded as a serious breach of the core values of the University. More
information may be found via the plagiarism framework website. All coursework is to be
submitted electronically and will be run through our plagiarism detection mechanisms.
Please ensure you are familiar with the University's Plagiarism rules and if you are in any
doubt please contact your module tutor.
https://www.lancaster.ac.uk/academic-standards-and-quality/regulations-policies-andcommittees/principles-policies-and-guidelines/plagiarism-framework/
General Guidance:
This is an individual assessment that will count for 30% of your overall mark for this module.
Learning objectives
• Develop appreciation and understanding of security concepts.
• Formulate troubleshooting methods to identify/solve problems.
• Evaluate information to argue solution choices critically.
• Effectively communicate ideas.
Submission requirements
Prepare and submit your coding solutions on Coderunner. For all coding solutions, you must
use Python3. You can use modules from standard Python3 and cryptography.io. Your code
should include appropriate comments explaining what you do and why. All implementations
must be in Python3, and the cryptography.io library must be used for any cryptographyrelated functions (if needed). If you must consider padding in any task, you should use PKCS7.
Your code should include appropriate comments explaining your solution.
Example of the type of comments you SHOULD AVOID -- the comments don't explain the
solution:
def avalancheCalculator(string1, string2):
 # I hash the strings and generate the hexdigest values
 hexstring1 = hashlib.sha256(string1.encode()).hexdigest()
 hexstring2 = hashlib.sha256(string2.encode()).hexdigest()

 # I convert the hexdigest to integers
 int1 = int(hexstring1, 16)
 int2 = int(hexstring2, 16)
 # I XOR the integers
 intResult = int1 ^ int2

 # I return the 1's in the binary representation.
 return ( bin(intResult).count('1') )
Examples of types of comments that provide adequate information – the comments explain
the solution to the problem:
def avalancheCalculator(string1, string2):
 # A solution to the problem is to xor the integer representation
 # of the two values and count in the resulting int the number of bits
 # having the value of 1.
 hexstring1 = hashlib.sha256(string1.encode()).hexdigest()
 hexstring2 = hashlib.sha256(string2.encode()).hexdigest()

 int1 = int(hexstring1, 16)
 int2 = int(hexstring2, 16)
 intResult = int1 ^ int2

 # The "1"s in the binary representation of the XOR operation
 # represent which bits from int1 and int2 are different.
 # This is due to applying the XOR operation. 0^1 = 1, 1^0 = 1
 # Counting the "1"s will provide how many bits differ
 return ( bin(intResult).count('1') )
You have to upload the implementation of your functions on CodeRunner.
Marking Guidelines:
• You have to answer all three (3) tasks. Marks will be allocated based on the clarity of your
solution, comments in the code, and correctness. More information is provided within the
individual questions.
• The name of functions, type/number of variables, and return values must follow the tasks’
guidelines. Failing to adhere to this may result in not receiving marks.
Deadline for submissions: Friday 16
th February 16:00
TASK 1
--------
You are provided with the ds_hash hash function. The function receives a
finite message as input and produces a non-negative integer, which we
consider to be the hash value of the given message.
The size of input messages is fixed and always equals 64 bytes. Implement an
appropriate attack to check if the hash function ds_hash is strong collision
resistant. Your alphabet should include all lower-case and upper-case letters
of the English alphabet and all numbers from 0 to 9.
# -- START OF YOUR CODERUNNER SUBMISSION CODE
# INCLUDE ALL YOUR IMPORTS HERE
def ds_hash(message: str) -> int:
 hash_value = 0
 for ch in message:
 hash_value = (hash_value * 71) + ord(ch)

 return hash_value & 0x7FFFFFFF
def myAttack() -> bool:
# YOUR IMPLEMENTATION
return # True or False
# -- END OF YOUR CODERUNNER SUBMISSION CODE
#You can test your code in your system (NOT IN YOUR CODERUNNER SUBMISSION)
as follows:
# MAIN
if __name__ == "__main__":
print( myAttack() )
Marking scheme: This task's weight is 35% for providing a valid attack and
commenting on your code.
TASK 2
--------
Implement an HMAC based on the RFC-2104 definition (Section 2). The RFC is
available at the following link: https://www.rfc-editor.org/rfc/rfc2104
Below is the extract from the RFC that describes how the HMAC can be
implemented, and this is what you need to implement. The text is amended to
provide specific information about the selected H cryptographic hash
function, i.e., SHA256.
 The definition of HMAC requires a cryptographic hash function, which
 we denote by H, and a secret key K. In your implementation, assume H
 to be the SHA256 cryptographic hash function.
 We denote by B the byte-length of such blocks (B=64 for SHA256),
 and by L the byte-length of hash outputs (L=** for SHA256).
 The authentication key K can be of any length up to B, the
 block length of the hash function. Applications that use keys longer
 than B bytes will first hash the key using H and then use the
 resultant L byte string as the actual key to HMAC. In any case the
 minimal recommended length for K is L bytes (as the hash output
 length).
 We define two fixed and different strings ipad and opad as follows
 (the 'i' and 'o' are mnemonics for inner and outer):
 ipad = the byte 0x36 repeated B times
opad = the byte 0x5C repeated B times.
 To compute HMAC over the data `text' we perform
 H(K XOR opad, H(K XOR ipad, text))
 Namely,
 (1) append zeros to the end of K to create a B byte string
 (e.g., if K is of length 20 bytes and B=64, then K will be
 appended with 44 zero bytes 0x00)
 (2) XOR (bitwise exclusive-OR) the B byte string computed in step
 (1) with ipad
 (3) append the stream of data 'text' to the B byte string resulting
 from step (2)
 (4) apply H to the stream generated in step (3)
 (5) XOR (bitwise exclusive-OR) the B byte string computed in
 step (1) with opad
 (6) append the H result from step (4) to the B byte string
 resulting from step (5)
 (7) apply H to the stream generated in step (6) and output
 the result
The function's name has to be CustomHMAC and defined as follows.
# -- START OF YOUR CODERUNNER SUBMISSION CODE
# INCLUDE ALL YOUR IMPORTS HERE
def CustomHMAC(key: bytes, text: str) -> str:
# YOUR IMPLEMENTATION
return # YOUR RESULT
# -- END OF YOUR CODERUNNER SUBMISSION CODE
#You can test your code in your system (NOT IN YOUR CODERUNNER SUBMISSION)
as follows:
# MAIN
if __name__ == "__main__":
 k = os.urandom(16) # k is <class 'bytes'>
 txt = "hello world!!!!" # txt is <class 'str'>

 print( CustomHMAC(k, txt) )
 # The output will be a string of hexadecimal values, e.g.: a51b … 35fa

You can debug your code against the result from the following function:
from cryptography.hazmat.primitives import hashes, hmac
def HMAC_from_Cryptography(key: bytes, text: str) -> str:
 h = hmac.HMAC(key, hashes.SHA256())
 h.update(text.encode())
 signature = h.finalize().hex()

 return signature
Marking scheme: This task's weight is 40%, which will be allocated equally
for correctly implementing the steps and commenting on your code.
TASK 3
--------
Using the AES-ECB encryptor from the cryptography.io module, implement the
AES mode in Figure 1. You can instantiate an AES-ECB encryptor as follows:
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms,
modes
key = # SELECT AN APPROPRIATE KEY FOR AES
cipher = Cipher(algorithms.AES(key), modes.ECB())
encryptor = cipher.encryptor()
Figure 1 - The figure describes a mode of AES for encrypting plaintext to ciphertext
The function's name has to be CustomAESmode and defined as follows:
# -- START OF YOUR CODERUNNER SUBMISSION CODE
# INCLUDE ALL YOUR IMPORTS HERE
def CustomAESMode(key: bytes, iv: bytes, plaintext: str) -> str:
# YOUR IMPLEMENTATION
return # THE CIPHERTEXT
# -- END OF YOUR CODERUNNER SUBMISSION CODE
#You can test your code in your system (NOT IN YOUR CODERUNNER SUBMISSION)
as follows:
# MAIN
if __name__ == "__main__":
 key = bytes.fromhex("06a9214036b8a15b512e03d534120006")
 iv = bytes.fromhex("3dafba429d9eb430b422da802c9fac41")
 txt = "This is a text"

 print( CustomAESMode(key, iv, txt) )
 # The result using the above input should be:
1827bfc04f1a455eb101b943c44afc1d
Marking scheme: This task's weight is 25%, which will be allocated equally
for correctly implementing the steps and commenting on your code.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代做CA3 Group程序、Java編程設計代寫
  • 下一篇:CS170程序代做、Python編程設計代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        亚洲精品美女| 欧美不卡激情三级在线观看| 久久综合99re88久久爱| 亚洲男人影院| 国产精品地址| **性色生活片久久毛片| 午夜精品久久久久久久久久久久| 久久久久久久网站| 久久黄色网页| 国产精品中文字幕在线观看| 性一交一乱一区二区洋洋av| 国产精品私拍pans大尺度在线| 性欧美大战久久久久久久久| 亚洲麻豆av| 欧美一级视频免费在线观看| 亚洲精品久久久蜜桃| 国产一区二区在线观看免费| 在线观看一区二区精品视频| 国产精品第一页第二页第三页| 午夜国产精品视频| 国产精品久久久久99| 欧美日韩亚洲一区二区三区在线观看| 久久午夜国产精品| 日韩天堂av| 国产精品麻豆va在线播放| 亚洲欧美另类在线| 欧美精品激情blacked18| 欧美激情第三页| 国产精品视频1区| 国产欧美精品在线观看| 国产主播一区二区三区四区| 久久久精品tv| 欧美中文字幕不卡| 99精品国产一区二区青青牛奶| 91久久精品日日躁夜夜躁国产| 午夜视频久久久| 国产精品国产三级国产专区53| 亚洲综合成人婷婷小说| 欧美日韩视频在线| 一区二区三区中文在线观看| 亚洲一级片在线观看| 亚洲国产精品久久久久久女王| 国产视频精品网| 午夜亚洲性色视频| 久久久亚洲影院你懂的| 好吊视频一区二区三区四区| 黄色成人av网| 一区二区三区福利| 国产精品啊啊啊| 亚洲国产成人av在线| 国产三区精品| 欧美久久视频| 久久久久久高潮国产精品视| 欧美色播在线播放| 欧美高清视频一区二区| 久久精品国产一区二区电影| 国产色婷婷国产综合在线理论片a| 欧美精品粉嫩高潮一区二区| 亚洲一区影音先锋| 韩国自拍一区| 国产精品国产三级国产普通话三级| 欧美视频导航| 国产日产精品一区二区三区四区的观看方式| 久久高清福利视频| 国产精品日产欧美久久久久| 亚洲午夜激情网站| 国产日韩欧美一二三区| 久久久国产亚洲精品| 亚洲一区免费网站| 欧美刺激性大交免费视频| 亚洲欧美日韩精品在线| 玖玖精品视频| 亚洲日韩欧美一区二区在线| 欧美日韩在线播放三区| 国产精品久久一区二区三区| 国产日韩欧美夫妻视频在线观看| 久久久国产亚洲精品| 欧美精品一区二区三区在线播放| 欧美人牲a欧美精品| 久热精品在线| 国产精品v日韩精品| 国产精品视频999| 噜噜噜躁狠狠躁狠狠精品视频| 欧美一区日韩一区| 国产亚洲精品bt天堂精选| 美日韩精品视频免费看| 欧美日韩一区免费| 老司机久久99久久精品播放免费| 欧美成人dvd在线视频| 99热免费精品| 久久理论片午夜琪琪电影网| 欧美日韩一区在线视频| 国产欧美一二三区| 欧美激情网友自拍| 久久夜色精品亚洲噜噜国产mv| 亚洲视频在线免费观看| 亚洲网站在线观看| 亚洲视频网站在线观看| 欧美日韩性生活视频| 久久av红桃一区二区小说| 西西人体一区二区| 国内精品**久久毛片app| 一本久久综合亚洲鲁鲁五月天| 一区二区三区四区五区精品| 久热爱精品视频线路一| 亚洲精品五月天| 亚洲第一搞黄网站| 噜噜噜噜噜久久久久久91| 在线观看三级视频欧美| 亚洲欧洲精品一区二区三区| 国外成人在线视频网站| 亚洲免费在线观看视频| 久久综合色播五月| 欧美日韩亚洲在线| 欧美影院一区| 欧美视频亚洲视频| 久久亚洲一区二区三区四区| 中日韩午夜理伦电影免费| 狠狠色丁香婷综合久久| 国产精品乱码人人做人人爱| 欧美日韩一区二区三区四区在线观看| 亚洲精品欧美一区二区三区| 免费在线观看成人av| 亚洲美女性视频| 久久九九全国免费精品观看| 99在线观看免费视频精品观看| 欧美一区二区三区视频免费| 亚洲欧美在线aaa| 一区免费观看| 在线日韩成人| 久久久久久穴| 国产精品伦理| 欧美激情免费观看| 国际精品欧美精品| 国产精品日韩电影| 一区二区冒白浆视频| 久久爱91午夜羞羞| 日韩视频亚洲视频| 欧美xart系列在线观看| 一区二区在线观看视频在线观看| 免费亚洲一区| 欧美日韩卡一卡二| 国产亚洲永久域名| 国产精品福利在线观看网址| 一区二区日韩免费看| 亚洲尤物影院| 国产精品美女主播在线观看纯欲| 国产精品自拍网站| 欧美日韩中国免费专区在线看| 国产精品高潮呻吟久久av黑人| 国产亚洲综合在线| 香蕉av777xxx色综合一区| 久久久噜噜噜久久人人看| 亚洲美女在线一区| 久久精品成人一区二区三区蜜臀| 国产亚洲精久久久久久| 欧美视频在线视频| 亚洲美女视频在线观看| 欧美激情成人在线视频| 久久在线免费观看| 亚洲国产天堂久久国产91| 国产日韩精品综合网站| 欧美精品国产一区二区| 欧美三级韩国三级日本三斤|