What must you do if you want someone to send you encrypted e-mail using public-key encryption?
What will be an ideal response?
In order to have someone send you encrypted e-mail, you must first generate a key pair. Then, you send the other person the public key, and you retain the private key. The other person creates the message, using the public key, and then sends the message to you. You open and decrypt it with your private key of the key pair.
You might also like to view...
A _____ is a simple program unit that allows the user to call one or more functions with a variety of argument values.
a. prototype b. recursive function c. driver d. local variable
The objects that form the units of memory allocation in a linked list are called
A) memory modules B) elements C) nodes D) links
Use the ___________________ property to resize or scale the background image.
a. background-image b. background-clip c. background-origin d. background-size
Line 5 – What numbers will be generated?
```1 int numList[1000]; 2 srand(123); 3 for(int i = 0; i<1000; i++) 4 { 5 numList[i] = rand()%1000 +5; 6 cout << numList[i]; 7 }``` A. 5 through 1000 B. 0 through 1004 C. 5 through 1004 D. compiler error – there should be a number in the parentheses for rand()