https://github.com/pejpero/password_manager
https://github.com/pejpero/password_manager
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pejpero/password_manager
- Owner: PejperO
- License: mit
- Created: 2021-05-27T11:37:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-17T02:43:41.000Z (over 2 years ago)
- Last Synced: 2025-01-12T06:27:35.714Z (4 months ago)
- Language: C++
- Size: 1020 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Password_Manager
A console application that allows you to store passwords securely. With it, you can restore the saved password, change it or add a new one. The program also has a built-in password generator, so you can create a secure password. The passwords themselves are encrypted and stored in several files. The interface itself is written legibly, and thanks to additional options such as sorting by name, it is easy to find what we are looking for. It also has a trace of recent activity, making it easy to check if someone has logged in between us.## Examples
### welcone
Welcome to Password manager!
To make sure you are the owner please write the password:
### after login
What do you need?
type 1 if you want to read first file
type 2 if you want to read second file
type 3 if you want to exit
### main guide
The last time you opened this file was: 4:15 17.10.2022which category you are interested in?
write < all > to see all the passwords
categories in file 1 < social > < PC > < mail >
all
name: facebook password: mommy12
name: gmail password: GoogleKnowsYou^^
name: gmail2 password: gmail2123
name: myPC password: notmyPC
name: twitter password: twitty6type 1 if you want to edit passwords
type 2 if you want to go back to desktop
type 3 if you want to sort by names
type 4 if you want to exit
## What I Learned
* How to work with several source files
* Classes and Objects
* File operations
* time_t datatype
* Encryption & Decryption