Password Keeper

Share your advanced PureBasic knowledge/code with the community.
User avatar
blueb
Addict
Addict
Posts: 1116
Joined: Sat Apr 26, 2003 2:15 pm
Location: Cuernavaca, Mexico

Password Keeper

Post by blueb »

Tired of having too many passwords to remember and want a simple solution?

PasswordKeeper is basic and does what I need, hopefully some of you will like it. :)

Notes...
You may insert a 24 character MD5 string into the password area
or you can write in whatever password you desire... your choice.

Some sites require special chars., etc. so the program is flexible.... you can insert whatever you wish into the fields.

I created an icon and placed the program on my Windows Taskbar for quick access.
------------------------
New DropBox Link...
Generic PassKeeper.zip (source code and icon, etc.)
https://www.dropbox.com/s/80cj5aoi111ua ... r.zip?dl=0

small update
Last edited by blueb on Thu Jan 24, 2019 9:23 pm, edited 1 time in total.
- It was too lonely at the top.

System : PB 6.21(x64) and Win 11 Pro (x64)
Hardware: AMD Ryzen 9 5900X w/64 gigs Ram, AMD RX 6950 XT Graphics w/16gigs Mem
Mohawk70
Enthusiast
Enthusiast
Posts: 404
Joined: Thu May 11, 2006 1:04 am
Location: Florida, USA

Re: Password Keeper

Post by Mohawk70 »

An MD5 hash is 128 bits, ie 32 character hexadecimal encoding. Why allow 24 character MD5 input :?:
HP Z800 Workstation
CPU : Dual Xeon 5690 3.46GHz
RAM : 96GB RAM ( 8GB x 12 )
PSU : 1100W
GPU : NVIDIA RTX 3050 8GB
STORAGE : 9TB
(4) 2TB Seagate IronWolf Pro HDD
(1) 1TB Samsung 870 EVO SSD
User avatar
blueb
Addict
Addict
Posts: 1116
Joined: Sat Apr 26, 2003 2:15 pm
Location: Cuernavaca, Mexico

Re: Password Keeper

Post by blueb »

Mohawk70 wrote:An MD5 hash is 128 bits, ie 32 character hexadecimal encoding. Why allow 24 character MD5 input :?:
Only because it seemed reasonable (for my needs).

You could use 2 hashes and join them together and have a 64 digit password, but the source code is there so you can modify it the way you wish. :)
- It was too lonely at the top.

System : PB 6.21(x64) and Win 11 Pro (x64)
Hardware: AMD Ryzen 9 5900X w/64 gigs Ram, AMD RX 6950 XT Graphics w/16gigs Mem
Mohawk70
Enthusiast
Enthusiast
Posts: 404
Joined: Thu May 11, 2006 1:04 am
Location: Florida, USA

Re: Password Keeper

Post by Mohawk70 »

blueb wrote:Only because it seemed reasonable (for my needs).

You could use 2 hashes and join them together and have a 64 digit password, but the source code is there so you can modify it the way you wish. :)
Right on, just curious. No need to modify your code though ... I already use my own !
HP Z800 Workstation
CPU : Dual Xeon 5690 3.46GHz
RAM : 96GB RAM ( 8GB x 12 )
PSU : 1100W
GPU : NVIDIA RTX 3050 8GB
STORAGE : 9TB
(4) 2TB Seagate IronWolf Pro HDD
(1) 1TB Samsung 870 EVO SSD
Post Reply