Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Computer Engineering Expert

problem 1Consider the following variants of the RSA public-key encryption scheme: 1) textbook RSA; 2) padded RSA; 3) OAEP+ RSA. Which of the following statements is true, under the RSA intractability assumption and possibly the existence of random oracles?
a. Textbook RSA (on random messages) satisfies one-wayness;
Padded RSA (when the pad is long enough) and OAEP+ RSA satisfy indistinguishability against chosen ciphertext attacks
b. Textbook RSA (on random messages), Padded RSA (when the pad is long enough) and OAEP+ RSA satisfy indistinguishability against chosen plaintext attacks
c. Textbook RSA (on random messages) and Padded RSA (when the pad is long enough) satisfy one-wayness; OAEP+ RSA satisfy indistinguishability against chosen ciphertext attacks
d. Textbook RSA (on random messages), Padded RSA (when the pad is long enough) and OAEP+ RSA satisfy indistinguishability 

problem 2
Which of the following statements about the RSA encryption scheme is known to be true ?
a. if it satisfies one-wayness (for random messages) then factoring is hard
b. if factoring is hard then it satisfies one-wayness (for random messages) 
c. if it satisfies one-wayness (for random messages) then factoring is easy
d. if factoring is easy then it satisfies one-wayness (for random messages) 

problem 3
Which type of homomorphism is satisfied by the (textbook) RSA encryption 
scheme? (Here, N=pq denotes the modulus used in the public key)
a. a ((Z_N,product mod N),(Z*_{phi(N)},sum mod phi(N)))-homomorphism
b. a ((Z*_N,product mod N),(Z*_{phi(N)},sum mod phi(N)))-homomorphism
c. a ((Z_N,product mod N),(Z_N,product mod N))-homomorphism
d. a ((Z*_N,product mod N),(Z*_N,product mod N))-homomorphism

problem 4
Consider the El Gamal encryption scheme, a symmetric encryption scheme (KG,E,D), and the following hybrid encryption scheme having an encryption algorithm that, on input a public key (G,q,g,h), where h=g^x, returns (c1,c2). For which of the following c1,c2 values (and assuming a suitable definition of the key generation and decryption algorithms) does the hybrid encryption scheme satisfy indistinguishability in the presence of chosen message attack?
a.
c1=g^y, c2=E(k,m), where k = g and y is random
b.
c1=g^y, c2=E(k,m), where k = h and y is random
c.
c1=g^y, c2=E(k,m), where k =g^y and y is random
d.
c1=g^y, c2=E(k,m), where k = h^y and y is random

problem 5
Consider the textbook RSA public-key encryption (KG,E,D), where the public key returned by KG is denoted as (e,n), the secret key returned by KG is the pair of primes (p,q), the plaintext input to E is denoted as m and the ciphertext output by E is denoted as c. Which of the following values is closer to c when p=23, q=31, e=49 and m=347?
a. 270
b. 90
c. 630
d. 450

problem 6
Which of the following public-key encryption schemes is known to be insecure against a chosen-plaintext attack?
a. Textbook RSA
b. The scheme computing the ciphertext as the output of a trapdoor permutation that takes as input the plaintext
c. Any deterministic public-key encryption scheme
d. All of the above

problem 7
Assume an encryption scheme is homomorphic. Which of these properties it does not satisfy?
a. perfect secrecy
b. indistinguishability in the presence of a chosen ciphertext attack
c. indistinguishability in the presence of a chosen plaintext attack
d. indistinguishability

problem 8
Which of these schemes would be your first choice as an encryption scheme in applications where, respectively, (1) the maximum security and efficiency are desired, and (2) the maximum efficiency and applicability to computing on encrypted data are desired?
a. (1) Cramer-Shoup's scheme and (2) Paillier's scheme
b. (1) Cramer-Shoup's scheme and (2) Gentry's scheme
c. (1) A hybrid scheme where the asymmetric scheme is Cramer-Shoup's scheme and the symmetric scheme is a secure transmission scheme and (2) Gentry's scheme
d. (1) A hybrid scheme where the asymmetric scheme is Cramer-Shoup's scheme and the symmetric scheme is a secure transmission scheme and (2) Paillier's scheme

problem 9
Which of the following schemes is known to be insecure against a chosen-ciphertext attack?
a. Textbook RSA
b. El Gamal
c. The scheme based on trapdoor permutations and hardcore predicates
d. All of the above

problem 10
Assume an encryption scheme is malleable. Which of these properties it does not satisfy?
a. perfect secrecy
b. indistinguishability in the presence of a chosen ciphertext attack
c. indistinguishability in the presence of a chosen plaintext attack
d. indistinguishability

problem 11
Computing on encrypted data is an interesting computation paradigm allowing parties to compute functions of encrypted plaintexts without decrypting the plaintexts, but just operating on the ciphertexts. To design a cryptographic protocol for digital election where a trusted authority can compute over encrypted electors' votes, which of the following encryption schemes would you use?
a. The Goldwasser-Micali scheme
b. The (textbook) RSA scheme
c. The El Gamal scheme
d. The Paillier's scheme

problem 12
In certain applications (e.g., data transmission inside computers), one parity bit is added to a message so that the resulting total number of bits (including the message bits plus the parity bit) that are equal to 1 is even, unless the transmission of the message experienced an error in precisely 1 bit (in these applications, errors in 2 or more bits are extremely unlikely and thus this possibility is ignored), in which case the total number of bits equal to 1 is odd. The sender of this message would like to encrypt all the message bits in a way that a different party can still check whether there was an error or not, without need for decrypting (which would imply intruding into the computer's data). Which of the following encryption schemes could be used by the sender?
a. Goldwasser-Micali
b. Rabin
c. Gentry
d. Any of the above

problem 13
Multiple patients would like to submit encrypted medical records in a way that allows a doctor to compute statistics like the probability that none of these patients has a particular disease, without need for decrypting any one of the records (showing the specific user's probability of not having that disease). Which of the following encryption schemes could be used by the patients?
a. El Gamal
b. Paillier
c. Rabin
d. None of the above

problem 14
All of the school students are requested to submit encrypted GPA values in a way that allows a statistician to compute statistics like the average GPA in their school, without need for decrypting any one of the students' GPA values. Which of the following encryption schemes would be good enough for this purpose?
a. El Gamal's scheme
b. A malleable scheme that allows the statistician to divide a GPA value by the number of students
c. Paillier's scheme
d. None of the above

problem 15
What are the advantages of hybrid encryption?
a. It combines the lack of shared keys in private-key encryption with the efficiency of public-key encryption
b. It combines the lack of shared keys in public-key encryption with the efficiency of private-key encryption
c. It combines the lack of entity authentication in public-key encryption with the need for shared keys of private-key encryption
d. It combines the lack of entity authentication in private-key encryption with the need for shared keys of public-key encryption

problem 16
For problem 11, for each of the 4 possible answers, provide a justification of why you chose or did not choose that answer. Enter your justifications as text. 

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M987672

Have any Question?


Related Questions in Computer Engineering

On the below question how did they decided the two

On the below question, how did they decided the two probabilities of guessing the correct and wrong answer on a question? Where did the 0.25 and 0.75 come from? The probability of achieving exactly  k  successes in  n  t ...

What are some examples of marketing activities that are

What are some examples of "marketing" activities that are associated with the Summer Olympics? How does global marketing and the use of new digital marketing techniques facilitate marketing activities at the Olympics in ...

Suppose you were working on a very large system that

Suppose you were working on a very large system that consisted of many .cpp files and the associated header files. Lots of libraries too, developed for the project. a. What ADT structure could you use to represent all th ...

Be as specific as you can for the following questions

Be as specific as you can for the following questions, explain each concept in detail and how you arrive at your solutions. This is JUST as important as your actual answers. You are provided a unit square domain where th ...

Question suppose that we want to create a divide and

Question : Suppose that we want to create a divide and conquer matrix multiplication algorithm for square matrices. Assuming that n is a power of three, the algorithm divides each matrix of A, D, and C into nine equi-siz ...

Suppose a firm is employing all its inputs so that the mrp

Suppose a firm is employing all its inputs so that the MRP per dollar spent on each sentence is the same. this suggest that: a) amount of each resource employed will depend on both its price and its productivity b) price ...

What effect does the teacher have on creating a learning

What effect does the teacher have on creating a learning environment with little to no behavior problems?

On a multiple choice test there are 8 questions worth 125

On a multiple choice test, there are 8 questions worth 12.5 points each. There are four choices for each question (a,b,c,d). Robin has not studied for the quiz and decides to randomly guess on all of the questions. 1. Th ...

On june 23 2016 the brits voted to exit the eu the

On June 23, 2016, the Brits voted to exit the EU. The following were the daily values of an investment. June 23 24 Dollars 109.60 111.60 If returns were to accumulate at the same rate over an entire year (252 trading day ...

Companies persue closer coordination and collaboration with

Companies persue closer coordination and collaboration with channel suppliers to better address customer needs inorder to 1) Develop human resource management activities that improve the skills , expertise and knowledge ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As