A security technician is implementing PKI on a Network. The technician wishes to reduce the amount of bandwidth used when verifying the validity of a certificate. Which of the following should the technician implement?
A. CSR
B. Key escrow
C. OSCR
D. CRL
Answer: D. CRL
You might also like to view...
A __________ is a single, meaningful unit of data, such as a name, a social security number, or a temperature reading.
a. record b. data element c. file d. byte string
__________ begins a single-line comment.
Fill in the blank(s) with the appropriate word(s).
In Office, ____ is presented in a window that has browser-style navigation buttons.
A. Help B. an index C. the Quick Access Toolbar D. a file
Suppose you want to use a for loop to iterate through an array named anArray. How would you indicate the number of times the loop will be performed?
A. final Integer N = anArray.length; for (Integer i = 0; i < N; i++) {... B. anArray.length = N; for (Integer i = 0; i < anArray.length; i++) {... C. for (anArray.length = 0; anArray.length < N; anArray.length++) {... D. final Integer N = anArray.length; for (Integer i = anArray.length; i < N; i++) {...