This document contains code for a login system program with the following functionality:
1. It allows users to register with a username and password, which are encrypted and stored in a database.
2. Users can log in by entering their username and password, which are decrypted and validated against the database.
3. Registered users can be viewed by decrypting the usernames retrieved from the database.
4. The database contents can be displayed.
The program uses a switch case to prompt the user for their choice of these options and take the appropriate action.