Have I Been Pwned – Java Implementation!

Hey all, So I got bored and decided to learn some Java. I wrote up a little app to determine whether or not your password has been compromised by testing it against the HIBP (https://haveibeenpwned.com/) database of known-compromised passwords. It’s not particularly complex, but it does ensure your password doesn’t actually leave your system by using the k-Anonymity model provided by HIBP in their APIs. My code’s at https://github.com/Modusmundi/HIBP_Java, take a look!...

April 3, 2022 · 1 min · 72 words · Modus