InterviewSolution
Saved Bookmarks
| 1. |
Which of the following requires no password travel across the internet?(a) Readable system(b) Manipulation system(c) Challenge–response system(d) Response systemThis question was posed to me in an international level competition.This is a very interesting question from Encryption and Its Applications topic in chapter Database Programming Techniques of Database Management |
|
Answer» CORRECT choice is (c) Challenge–response system The best explanation: The database system sends a challenge string to the USER. The user encrypts the challenge string using a secret password as encryption KEY and then returns the result. The database system can VERIFY the AUTHENTICITY of the user by decrypting the string with the same secret password and checking the result with the original challenge string. |
|