1. Homepage
  2. Programming
  3. ECMM462: Fundamentals of Security - Continuous Assessment: Symmetric and Asymmetric Encryption

ECMM462: Fundamentals of Security - Continuous Assessment: Symmetric and Asymmetric Encryption

Engage in a Conversation
UKUniversity of ExeterECMM462Fundamentals of SecuritySymmetric EncryptionAsymmetric EncryptionProtocol VerificationAccess ControlPython

ECMM462: Fundamentals of Security Continuous Assessment (v22.4)

1 Symmetric Encryption (25 marks)

In the lecture we discussed the Feistel structure as a foundation of many modern symmetric block ciphers. Its general structure is repeated in Figure 1. It requires an 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: CourseNana.COM

• 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. • Then the top and bottom bits are swapped and passed on to the next round. CourseNana.COM

For this task you should implement a version of the Feistel structure in Python3. To this end you should complete the template file feistel.py provided on the ELE page. CourseNana.COM

Your implementation should work on 8 bit inputs and use bitwise AND 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, CourseNana.COM

> python3 feistel. py 10101010 5 0101 1111 1010 0101 0101
>XXXXXXXX

should encrypt 10101010 in 5 rounds with round keys 0101, 1111, 1010, 0101, and 0101 respectively1 . Marking: You will get a maximum of 15 marks for correctly implementing encryption and a maximum of additional 10 marks for correctly implementing decryption. Partial marks will be awarded if your implementation is partially correct, i.e., if it works correctly for some but not all inputs. CourseNana.COM

2 Asymmetric Encryption (25 marks)

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

  1. A chooses two large primes P and Q, such that • P is relatively prime to Q − 1, • and Q is relatively prime to P − 1.
  2. A publishes N = P Q as its public key.
  3. A calculates P ′ and Q′ , such that • P P ′ ≡ 1 (mod Q − 1), • and QQ′ ≡ 1 (mod P − 1).
  4. B encrypts message M as C = M N mod N .
  5. A finds M by solving • M ≡ C P (mod Q), • and M ≡ C Q (mod P ).

2.1 Task 1 (10 marks)

For this part you should first encrypt the number 5 555 555 and then decrypt the number 5 555 555 using the above scheme. • The prime numbers you choose should be between 5 000 and 10 000. • List every intermediate steps for encryption and decryption. You may use the following tools: • Chinese Remainder Calculator: https://www.dcode.fr/chinese-remainder • Modular exponentiation: https://www.dcode.fr/modular-exponentiation • Coprime checker: https://www.dcode.fr/coprimes CourseNana.COM

2.2 Task 2 (15 marks)

For this part you should verify that the scheme is correct. To this end you should prove that encrypting a message with a public key and decrypting it again with the corresponding private key yields the original message. For your proof you may use • Fermat’s little theorem • Chinese remainder theorem described in the following. CourseNana.COM

2.2.1 Fermat’s little theorem

This theorem states that if p is a prime number, then ap ≡ a (mod p) CourseNana.COM

In addition, if a is not divisible by p Fermat’s little theorem guarantees that ap−1 ≡ 1 mod p) CourseNana.COM

2.2.2 Chinese reminder theorem The Chinese reminder theorem states that for a sequence of congruences x ≡ a1 (mod n1 ) x ≡ ak (mod nk ) such that ni are pairwise co-prime, the system has a unique solution in (mod N ) where N = n1 ∗⋅ ⋅ ⋅∗nk . CourseNana.COM

3 Protocol Verification (25 marks)

Consider the following protocol where X ⟪M ⟫ denotes a message M digitally signed by agent X: CourseNana.COM

Note that in this scenario, A does not know the public key of B and B does not know the public key of A. The aim of the protocol is to allow Agent A and Agent B to exchange a shared secret key Ks . CourseNana.COM

Task 1 (10 marks) Formalize the protocol and the corresponding security property in OFMC. Task 2 (5 marks) The protocol does not meet its goal. Explain why. Task 3 (10 marks) Fix the protocol. Note that OFMC might take some time to find a possible attack so you should wait until it was at least able to verify 2 sessions before you stop it. CourseNana.COM

4 Access Control (25 marks)

For this exercise you should implement a tool in Python3 to validate properties of a given BellLaPadula configuration. To this end you should complete the template file blpcheck.py provided on the ELE page. CourseNana.COM

The system should work for a fixed set of subjects, objects, security levels, and categories: • Subjects: Alice (A), Bob (B), Charlie (C) • Objects: Document 1 (1), Document 2 (2), Document 3 (3) • Security levels: low (l), high (h) • Categories: A, B, and C The objects are assumed to require the following security levels: • Document 1: low for categories A and B • Document 2: high for category C • Document 3: high for category B Subject-specific configurations are given in text files alice.txt, bob.txt, and charlie.txt. Each file contains the following information for the corresponding subject: • The first row contains the access rights for the documents. • The second row contains the maximum security level and corresponding categories. • The third row contains the current security level and corresponding categories. For example, a configuration file in which Alice has • write rights for Document 1, no rights for Document 2, and append rights for Document 3 • a maximum security level of high for categories A and B • a current security level of low for category A looks as follows: CourseNana.COM

Listing 1: alice.txt CourseNana.COM

w, , a
h : A, B
l :A

The currently executed rights are provided as command line parameters. The tool should output whether the model satisfies the Simple security condition, the star property, and/or the discretionary security property. CourseNana.COM

For example, in the following we check whether a state in which Alice writes to doc1 and Bob reads doc2 is secure: CourseNana.COM

> python3 blpcheck. py Alice:doc1:w Bob:doc2:r
>SSC : yes
> Star : yes
>DS : no

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
UK代写,University of Exeter代写,ECMM462代写,Fundamentals of Security代写,Symmetric Encryption代写,Asymmetric Encryption代写,Protocol Verification代写,Access Control代写,Python代写,UK代编,University of Exeter代编,ECMM462代编,Fundamentals of Security代编,Symmetric Encryption代编,Asymmetric Encryption代编,Protocol Verification代编,Access Control代编,Python代编,UK代考,University of Exeter代考,ECMM462代考,Fundamentals of Security代考,Symmetric Encryption代考,Asymmetric Encryption代考,Protocol Verification代考,Access Control代考,Python代考,UKhelp,University of Exeterhelp,ECMM462help,Fundamentals of Securityhelp,Symmetric Encryptionhelp,Asymmetric Encryptionhelp,Protocol Verificationhelp,Access Controlhelp,Pythonhelp,UK作业代写,University of Exeter作业代写,ECMM462作业代写,Fundamentals of Security作业代写,Symmetric Encryption作业代写,Asymmetric Encryption作业代写,Protocol Verification作业代写,Access Control作业代写,Python作业代写,UK编程代写,University of Exeter编程代写,ECMM462编程代写,Fundamentals of Security编程代写,Symmetric Encryption编程代写,Asymmetric Encryption编程代写,Protocol Verification编程代写,Access Control编程代写,Python编程代写,UKprogramming help,University of Exeterprogramming help,ECMM462programming help,Fundamentals of Securityprogramming help,Symmetric Encryptionprogramming help,Asymmetric Encryptionprogramming help,Protocol Verificationprogramming help,Access Controlprogramming help,Pythonprogramming help,UKassignment help,University of Exeterassignment help,ECMM462assignment help,Fundamentals of Securityassignment help,Symmetric Encryptionassignment help,Asymmetric Encryptionassignment help,Protocol Verificationassignment help,Access Controlassignment help,Pythonassignment help,UKsolution,University of Exetersolution,ECMM462solution,Fundamentals of Securitysolution,Symmetric Encryptionsolution,Asymmetric Encryptionsolution,Protocol Verificationsolution,Access Controlsolution,Pythonsolution,