For fun I am writing code that will hash a password with salt, just to try out (not for actual usage).
The problem is, I do not know how to store these passwords - If it was on the users hard drive, wouldn't it be insecure and only accessible by the person using it?
Can I store this file of hashed passwords + salt on Google drive, or some other online database? If so, how can this be accessed using python? I know you can do:
File = open('passwords.txt')
But how would this work with an online database?
Thanks for any responses :)