Password Vault banner

Password Vault

1 devlog
0s

This project is a Password Manager application developed in C++ using the Windows API (Win32 GUI). It allows users to store, manage, and search passwords for different websites through a graphical interface. The passwords are encrypted using an XO…

This project is a Password Manager application developed in C++ using the Windows API (Win32 GUI). It allows users to store, manage, and search passwords for different websites through a graphical interface. The passwords are encrypted using an XOR cipher and hex encoding before being saved to a file to provide basic security.

The application also includes features such as a password strength checker and a random password generator to help users create strong passwords. All credentials are stored in a file and can be searched and decrypted when needed.

This project demonstrates concepts of Object-Oriented Programming (OOP), file handling, basic encryption, and GUI development in C++.