A C++ program to manage forensic records. A user can be of type admin, doctor or investigator. All the above users can manage the records of criminals and dead bodies.
Attempts at saving the passwords more securely by
- Salting the passwords
- Hashing the newly salted string Whenever the passwords are needed to be checked only the final hash value matters. The real password is never stored anywhere in the disk or main memory.
- Can create admin, doctor, investigator, criminal or body records.
- Can view doctor, investigator, criminal and body data.
- Can delete doctor, investigator, criminal and body data.
- Can create body records.
- Can view body records.
- Can edit body records.
- Can create criminal records.
- Can view criminal records.
- Can edit criminal records.
Save the details of criminals.
Save the details of killed entities.