代写ECMM462 – Fundamentals of Security 2024/25代做留学生Python程序

ECMM462 – Fundamentals of Security

Academic Year: 2024/25

Title: Continuous Assessment

Submission deadline:  19 November 2024 before 12:00 (Midday)

This assessment contributes 40% of the total module mark and assesses the following intended learning outcomes:

•  Module Specific Skills and  Knowledge.

–  Explain the fundamental information/cyber security concepts

•  Personal and  Key Transferable / Employment Skills and Knowledge

–  Assessing and understanding the limitations of technology

This is an individual assessment and you are reminded of the University’s Regulations on Collaboration and Plagiarism.  You must avoid plagiarism, collusion and any academic misconduct behaviours.  Further details about Academic Honesty and Plagiarism can be found at https://ele.exeter.ac.uk/course/ view.php?id=1957.

Use of GenAI tools in Continuous Assessment for ECMM462  Fundamentals of Security

The University of Exeter is committed to the ethical and responsible use of Generative AI (GenAI) tools in teaching  and  learning,  in  line  with  our  academic  integrity  policies  where  the  direct  copying  of  AI- generated content is included under plagiarism, misrepresentation and contract cheating under definitions and offences in TQA Manual Chapter 12.3.  To support students in their use of GenAI tools as part of their assessments, we have developed a category tool that enables staff to identify where use of Gen AI is integrated, supported or prohibited in each assessment.  This assessment falls under the category of AI-supported.

You can find further guidance on using GenAI critically, and how to use GenAI to enhance your learning, on Study Zone digital.

When submitting your assessment, you must include the following declaration, ticking all that apply:

AI-supported/AI-integrated use is permitted in this assessment.  I acknowledge the following uses of GenAI tools in this assessment:

•  I  have used GenAI tools for developing ideas.

•  I have used GenAI tools to assist with research or gathering information.

•  I  have used GenAI tools to help me understand key theories and concepts.

•  I have used GenAI tools to identify trends and themes as part of my data analysis.

•  I  have used GenAI tools to suggest a plan or structure for my assessment.

•  I have used GenAI tools to give me feedback on a draft.

•  I have used GenAI tool to generate image, figures or diagrams.

•  I have used GenAI tools to proofread and correct grammar or spelling errors.

•  I have used GenAI tools to generate citations or references.

•  Other:  [please specify]

•  I  have not used any GenAI tools in preparing this assessment.

•  I declare that I have referenced use of GenAI outputs within my assessment in line with the University referencing guidelines.

Please note:  Submitting  your work without an accompanying declaration, or one with no ticked boxes, will be considered a declaration that you have not used generative AI in preparing your work

If a declaration sheet cannot be uploaded as part of an assignment  (i.e.   at the start of an essay), students understand that by submitting their assessment that are confirming they have followed the assessment brief and guidelines about GenAI use.


1    Symmetric Encryption                                                  (40 marks)

The Feistel structure Figure 1 is a foundation of many modern symmetric block ciphers.  It requires a 2w bit input and splits it into a left (bottom) and right (top) part of w bit each.  It then proceeds in n rounds to produce a 2w bit output.  Each round consists of the following steps:

•  The top w bits are combined with the round key ki  by a round function f.

•  The bottom w bits are combined with the output of f by bit-wise exclusive or (XOR).

•  Then, the top and bottom bits are swapped and passed on to the next round.

Figure 1:  Feistel structure.

Task 1                                                                                                      (40 marks)

For this task, you are required to implement a version of the Feistel structure in Python 3 (version 3.9 or above). Only use the packages included in the template file feistel .py provided on the ELE page.

Your  implementation should work on 8  bit  inputs and  use  bitwise  OR as  its  round function.  Your program should be called feistel .py and take the following input parameters:

•  The first parameter is an optional option -d (for decryption).

•  The second parameter is an 8 bit input string.

•  The third parameter is the number of rounds.

•  The next parameters are the different round keys.

The program should return only the 8 bit result. For example,

> pyth on 3   f e i st e l . py    1 0 1 0 1 0 1 0   5    0 1 0 1    1 1 1 1   1 0 1 0   0 1 0 1   0 1 0 1 XXXX XXXX

should encrypt 10101010 in 5 rounds with round keys 0101, 1111, 1010, 0101, and 0101 respectively.



2    Asymmetric Encryption                                                (60 marks)

2.1   Asymmetric Encryption Using Permutation Matrix Lookup

In the following, we describe a simple mechanism for asymmetric encryption.  The idea is to represent encryption and decryption using matrix lookups. To this end, three types of matrices are used:

M1  is just a sequence of N elements and contains a  random permutation of all integers between 1 and N.  For example m1 = (4, 3, 2, 5, 1) could be an example for N = 5.  It is used to construct a public key from a private key.  For example, if we assume that our private key is 2, then the corresponding public key, according to our example matrix m1, is given by m1(2) = 3.

M2  is  an N × N matrix such that each row represents a random permutation of all integers between 1 and N.  For example, for N = 5 we may have:

It  is  used  for  encryption.    For  example,  to encrypt 3  using our  matrix m2 and  key 2, we get m2(2, 3) = 3.

M3  is an N × N matrix such that each column represents a random permutation of all integers between 1 and N.  It is used for decryption.

The matrices must be constructed in a way such that for all k and p, with 1 ≤ k, p ≤ N, the following property holds:

M3(M2(M1(k), p), k) = p                                                      (1)



Tasks 2.1                                                                                                 (40 marks)

T1  Construct an example of M1,  M2, and M3 for N = 5.  Hint:  first, randomly create  M1 and M2 and

then construct M3 such that property Eq. (1) holds. T2  Encrypt the number 4 and then decrypt it again.

T3  Determine if the encryption scheme provides adequate security, and explain why.

T4  Implement  the  key generation scheme  in  Python 3  (version 3.9 or above) using only the following basic libraries:  sys,  re,  and random.  It should be called myPKE and take one input parameter, which represents N.  It should then generate three random matrices m1, m2, and m3, which satisfy Eq. 1.  For example:


> pyth on 3   my PKE   5

m1 :

4 ,3 ,2 ,5 ,1

m2 :

3 ,1 ,2 ,5 ,4

1 ,4 ,3 ,2 ,5

4 ,5 ,2 ,3 ,1

3 ,2 ,1 ,4 ,5

2 ,3 ,5 ,1 ,4

m3 :

. . . . . . . .

. . . . . . . .

. . . . . . . .

. . . . . . . .

. . . . . . . .

2.2    Prime-Based Asymmetric Encryption

Consider the following scheme by which B encrypts a message for A.

1.  A chooses two large primes, P and Q, such that:

•  P is relatively prime to Q−1

•  Q is relatively prime to P −1

2.  A publishes N = PQ as their public key.

3.  A calculates P,  and Q, , such that:

•  PP,  = 1 (mod Q−1)

•  QQ,  = 1 (mod P - 1)

4.  B encrypts message M as C = MN   (mod N).

5.  A finds M by solving:

•  M = CP,    (mod Q)

•  and M = CQ,    (mod P)

Task 2.2                                                                                                  (20 marks)

For this, you should first encrypt the number 5 555 555 and then decrypt the number 5 555 555 using the above scheme.

T1  Choose prime numbers between 5,000 and  10,000.

T2  List every intermediate step for encryption and decryption.

Hint

You may use the following to help you with your answer:

•  Chinese remainder theorem

•  Fermat’s little theorem

•  Chinese  Remainder Calculator: https://www.dcode.fr/chinese-remainder

•  Modular exponentiation: https://www.dcode.fr/modular-exponentiation.

  Coprime checker: https://www.dcode.fr/coprimes.

Marking criteria

•  Task1:  You will  receive a maximum of 25 marks for correctly implementing encryption if all test cases pass and an additional 15 marks for correctly implementing decryption if all test cases pass. Partial marks will be awarded if your implementation successfully encrypts or decrypts some of the test cases.

•  Task2.1:

–  T1 Matrices Construction:  Full marks are awarded for correctly constructing examples of M1, M2, and M3 such that property Eq.  (1) holds.

–  T2 Encryption and Decryption:  Full marks are awarded for successful encryption and decryption that correctly returns the original number.  Partial marks may be awarded if either encryption or decryption works partially.

–  T3  Security  Scheme Assessment:  Full  marks  are awarded for a well-explained and justified assessment of the scheme’s security.

–  T4 Implementation:  Full marks are awarded for implementing the function myPKE that correctly generates three random matrices, m1, m2, and m3, satisfying Eq.  1.  Partial marks are granted if the implementation meets some but not all of the required conditions or if the implementation is generally correct but contains minor errors.

•  Task2.2:

–  Prime  Number  Selection:   Correctly  choose  two  prime  numbers  that  meet  the  specified conditions.  Partial marks will be awarded if the primes fall within the range but do not fully meet the criteria.

–  Listing  Intermediate Steps:  Clearly  listing and explaining every intermediate step for both encryption and decryption.  Full marks will be awarded if all steps are documented accurately; partial marks will be given if steps are missing or unclear.

•  Note:  Before submitting your coursework,  please ensure that the  implementation com- piles and returns output successfully using Python 3.9 or above.  Implementations that fail to run or do not provide an output will receive zero marks.


热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图