Then, answer the following question (also included in the document):
Which of the following methods of cryptography, Public Key Encryption or Private Key Encryption, would you consider to be more popular or more widely used, and why (see chapter 5 in your text and the following link (https://www.quora.com/What-are-the-differences-between-private-key-and-public-key-encryption) and link2 (http://www.enterprisenetworkingplanet.com/netsecur/article.php/623901/Understand-the-differences-between-public-key-and-symmetric-key-encryption.htm) for help) ?
I would consider Public Key Encryption instead of Private key Encryprion.
Public key encryption is a type of encryption where we use 2 different keys for encrypting and decrypting the data.The encryption key is called as Public Key because it is made public and the key used for decryption is known as Private key as it is being kept as secret.It is not possible to find out the Private key using the Public Key. Some of the advantages of Public Key Encryption are :
Then, answer the following question (also included in the document): Which of the following methods of...
Bob is trying to send an encrypted message to Alice using the Asymmetric Key approach. Which key will Bob use to encrypt the message for Alice? Alice's Private Key Bob's Public Key Alice's Public Key Bob's Private Key Alice wants to digitally sign a message so that Bob can be assured that the message came from Alice and has not been changed in transit. Which key must Alice use to encrypt the message digest? Bob's Public Key Bob's Private Key...
The Question: Cryptography is behind the scenes of much of the security of the internet. These questions get at some of the key details of modern cryptography. Please answer the following questions briefly (and in your own words): a.) In your own words, define symmetric key cryptography and public key cryptography? b.) Which is more efficient for encoding and decoding large amounts of data to transmit securely between two parties? c.) Which of the two cryptography methods is more naturally...
Hello, please help me with the following question, below is the code for the tutorial provided for us is the following tutorial and the code in java http://tutorials.jenkov.com/java-cryptography/index.html https://docs.google.com/document/d/1_xZ09sbNjy9BCjgQhZrrRop4UrtXmUk2yKwSghIe1Cs/edit?fbclid=IwAR3ATn39Jm9odLYtvvndhDR6NQTZGb9yiiSpAamDwTwj5Hyk0B-cVraMqOw , thank you for your help in advance, Create a Java program based on the Java Cryptography API to do the following: Accept a user password from the user Accept a file name from the user Encrypt/Decrypt the file using symmetric key techniques with CBC The key should be based on...
1.Which of the following statements about asymmetric-key encryption is correct? a When using asymmetric-key encryption method, a total of two keys are necessary in electronic communication between two parties. b Employees in the same company share the same public key. c Most companies would like to manage the private keys for their employees. d Most companies would like to use a Certificate Authority to manage the public keys of their employees. e Two of the above are correct. 2 Which...
secuirty 1. When digitally signing a document, which key do you use? A: Symmetric key B: Public key C: Private Key D: Your house key 2. Which of the following protocols uses encryption? A: FTP B: Telnet C: SSH D: SMTP 3. What happens when rm is used to delete a file? A: Creates a new hardlink to the file B: Only removes the file pointer C: Removes file pointer and only writes over data D: Removes file pointer and...
Question 4 (5 points)
Consider the following scenario: Alice wants to send Bill a
message. Alice encrypts some information using Bill's public key;
Bill decrypts the ciphertext using his private key. This is an
example of:
Question 4 options:
1)
symmetric encryption
2)
digital certificate
3)
asymmetric encryption
4)
digital signature
Research the following: Symmetric key vs. Asymmetric key Public vs. Private Pre-shared key? Answer: Which one do you believe is more secure? and why. Are they equally secure? if not explain.
Consider the following classes: Dollhouse, Legos, TeddyBear, Toy, ToyBox Which should not be included in a class hierarchy? ToyBox Dollhouse TeddyBear Legos Toy __________________ Questions 6 - 9 Refer to the following code: public class WhatsIt { private int[] values; private double average; public WhatsIt () { values = new int[10]; findAvg(); } public WhatsIt (int[] n) { values = n; findAvg(); } public void findAvg () { double sum = 0; for (int i...
Directions: Answer the following questions on a separate document. Explain how you reached the answer, or show your work if a mathematical calculation is needed, or both. Submit your assignment using the assignment link above. A. In your own words, please identify two different stock exchanges in the United States. Describe the similarities and differences between the two stock exchanges. Identify one stock from each of the two stock exchanges. B. Using the two stocks you identified, determine the free...
**** ITS MULTI-PART QUESTION. PLEASE MAKE SURE TO ANSWER THEM ALL. SOLVE IT BY JAVA. **** *** ALSO MAKE SURE IT PASS THE TESTER FILE PLEASE*** Often when we are running a program, it will have a number of configuration options which tweak its behavior while it's running. Allow text completion? Collect anonymous usage data? These are all options our programs may use. We can store these options in an array and pass it to the program. In its simplest...