Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 7

ONLINE AUTHENTICATION

CSE208:THEORY OF COMPUTATION

Under Guidance Of
Prof. Prabhakar Rao
AIM
In this project, we will be
designing a C++ code for checking
the authenticity of user for access
of online documents.
objective

To design a C++ code which allows


only the authenticated users’ to access
an online document sent to him/her.
Process Involved
The program includes functions for accepting
the required details of users as follows.
1)GetName()
2)GetId()
3)GetDob()
4)GetOccupation()
5)GetFatherCount()
6)GetFirstSalary()
7)GetGradCGPA()
8)GetHouseNo()
Explanation of the functions used

The functions which were highlighted earlier are used


to get the required details of the user before his/her
access to the documents. In this program the details
will be obtained during the execution of the program.
However we would be storing the details of the
individuals in files. The user will be asked to answer
few random questions based on above mentioned
details already available in database.
Authentication

If the details entered by the user matches


with the previously saved details he/she
shall be allowed access rights otherwise
not.

You might also like