Your organization decides to use digital signatures to sign messages. Which security tenets are covered by this implementation?
A. confidentiality
B. authentication
C. nonrepudiation
D. integrity
E. options a and b only
F. options c and d only
G. options b, c, and d only
G
Explanation: Using digital signatures to sign messages provides authentication, nonrepudiation and integrity.
To provide confidentiality, you would also need to encrypt the message.
You might also like to view...
How would you achieve the same effect in Fractal?
What will be an ideal response?
Define a Java interface for the Election service suitable for use as a web service. State why you think the interface you defined is suitable. Explain how a WSDL document for the service is generated and how it is made available to clients.
What will be an ideal response?
Which features of the AFS design make it more scalable than NFS? What are the limits on its scalability, assuming that servers can be added as required? Which recent developments offer greater scalbility?
What will be an ideal response?
Which of the following should be used to make the code snippet work for students who get any score between 0 – 100?
``` var grade = 0; var score = parseInt("What's the score?"); if (score < 70) grade = "F"; else if ( ??? ) grade = "C"; else if (grade >= 85) grade = "A"; ``` a. ``` grade > 70 && grade < 85 ``` b. ``` grade >= 70 && <= 85 ``` c. ``` grade >= 70 ``` d. ``` grade < 85 ```